diff options
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. |