diff options
Diffstat (limited to 'tx_test.go')
-rw-r--r-- | tx_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -219,7 +219,7 @@ func TestTx_DeleteBucket(t *testing.T) { db.Update(func(tx *Tx) error { // Verify that the bucket's page is free. - assert.Equal(t, []pgid{5, 4}, db.freelist.all()) + assert.Equal(t, []pgid{4, 5}, db.freelist.all()) // Create the bucket again and make sure there's not a phantom value. b, err := tx.CreateBucket([]byte("widgets")) |