diff options
author | Ben Johnson <benbjohnson@yahoo.com> | 2014-05-08 08:10:14 -0600 |
---|---|---|
committer | Ben Johnson <benbjohnson@yahoo.com> | 2014-05-09 09:26:34 -0600 |
commit | a5cb717fc7741a98adbc31d082638835e81a97b5 (patch) | |
tree | 6e9c1e96b18c06213d5bd431483ca0bb62248bb5 /simulation_test.go | |
parent | Merge pull request #154 from benbjohnson/inline-buckets (diff) | |
download | dedo-a5cb717fc7741a98adbc31d082638835e81a97b5.tar.gz dedo-a5cb717fc7741a98adbc31d082638835e81a97b5.tar.xz |
Fix deletion reclamation.
Diffstat (limited to 'simulation_test.go')
-rw-r--r-- | simulation_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/simulation_test.go b/simulation_test.go index 9c196c6..482349f 100644 --- a/simulation_test.go +++ b/simulation_test.go @@ -128,7 +128,7 @@ func simulateGetHandler(tx *Tx, qdb *QuickDB) { // Retrieve root bucket. b := tx.Bucket(keys[0]) if b == nil { - panic(fmt.Sprintf("bucket[0] expected: %v\n", keys[0])) + panic(fmt.Sprintf("bucket[0] expected: %08x\n", trunc(keys[0], 4))) } // Drill into nested buckets. |