diff options
author | Ben Johnson <benbjohnson@yahoo.com> | 2014-06-18 12:35:13 -0600 |
---|---|---|
committer | Ben Johnson <benbjohnson@yahoo.com> | 2014-06-18 12:35:13 -0600 |
commit | 56de9902a82bee5ba4743cef87125e9288de9fdd (patch) | |
tree | c71ca330eea56da7de76044b1f110bc808e81805 /db_test.go | |
parent | Merge pull request #199 from kardianos/patch-1 (diff) | |
parent | fix up freelist stats naming and add FreeAlloc (diff) | |
download | dedo-56de9902a82bee5ba4743cef87125e9288de9fdd.tar.gz dedo-56de9902a82bee5ba4743cef87125e9288de9fdd.tar.xz |
Merge pull request #201 from Shopify/freelist_stats_cleanup
Fix up freelist stats naming and add FreeAlloc
Diffstat (limited to 'db_test.go')
-rw-r--r-- | db_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -254,7 +254,7 @@ func TestDB_Stats(t *testing.T) { }) stats := db.Stats() assert.Equal(t, 2, stats.TxStats.PageCount, "PageCount") - assert.Equal(t, 2, stats.FreelistN, "FreelistN %d", db.freelist.count()) + assert.Equal(t, 2, stats.FreePageN, "FreelistN") }) } |