diff options
author | Ben Johnson <benbjohnson@yahoo.com> | 2014-05-21 13:46:12 -0600 |
---|---|---|
committer | Ben Johnson <benbjohnson@yahoo.com> | 2014-05-21 13:46:12 -0600 |
commit | 7432bc341f8bbfc73eefc3278f2698e712e516b8 (patch) | |
tree | 33897520b5bd98383fe3b17cc9090e931c690b9c /tx_test.go | |
parent | Merge pull request #171 from Shopify/tx_copy (diff) | |
parent | Fix freelist allocate(). (diff) | |
download | dedo-7432bc341f8bbfc73eefc3278f2698e712e516b8.tar.gz dedo-7432bc341f8bbfc73eefc3278f2698e712e516b8.tar.xz |
Merge pull request #169 from benbjohnson/allocation
Fix freelist allocation direction.
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")) |