aboutsummaryrefslogtreecommitdiff
path: root/cmd/bolt/stats_test.go
diff options
context:
space:
mode:
authorBen Johnson <benbjohnson@yahoo.com>2014-07-26 17:17:03 -0600
committerBen Johnson <benbjohnson@yahoo.com>2014-07-26 17:17:03 -0600
commit44e6192d2bdecf1336e372686f15417ed98c4b16 (patch)
tree3a51074bfdd1275706f4d550392280efb93bee18 /cmd/bolt/stats_test.go
parentMove tests to a test package. (diff)
downloaddedo-44e6192d2bdecf1336e372686f15417ed98c4b16.tar.gz
dedo-44e6192d2bdecf1336e372686f15417ed98c4b16.tar.xz
Remove testify.
Diffstat (limited to 'cmd/bolt/stats_test.go')
-rw-r--r--cmd/bolt/stats_test.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/cmd/bolt/stats_test.go b/cmd/bolt/stats_test.go
index 2ad5d51..44ed434 100644
--- a/cmd/bolt/stats_test.go
+++ b/cmd/bolt/stats_test.go
@@ -7,7 +7,6 @@ import (
"github.com/boltdb/bolt"
. "github.com/boltdb/bolt/cmd/bolt"
- "github.com/stretchr/testify/assert"
)
func TestStats(t *testing.T) {
@@ -40,7 +39,7 @@ func TestStats(t *testing.T) {
})
db.Close()
output := run("stats", path, "b")
- assert.Equal(t, "Aggregate statistics for 2 buckets\n\n"+
+ equals(t, "Aggregate statistics for 2 buckets\n\n"+
"Page count statistics\n"+
"\tNumber of logical branch pages: 0\n"+
"\tNumber of physical branch overflow pages: 0\n"+