From 44e6192d2bdecf1336e372686f15417ed98c4b16 Mon Sep 17 00:00:00 2001 From: Ben Johnson Date: Sat, 26 Jul 2014 17:17:03 -0600 Subject: Remove testify. --- cmd/bolt/info_test.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'cmd/bolt/info_test.go') diff --git a/cmd/bolt/info_test.go b/cmd/bolt/info_test.go index 668cc61..dab74f6 100644 --- a/cmd/bolt/info_test.go +++ b/cmd/bolt/info_test.go @@ -5,7 +5,6 @@ import ( "github.com/boltdb/bolt" . "github.com/boltdb/bolt/cmd/bolt" - "github.com/stretchr/testify/assert" ) // Ensure that a database info can be printed. @@ -20,7 +19,7 @@ func TestInfo(t *testing.T) { }) db.Close() output := run("info", path) - assert.Equal(t, `Page Size: 4096`, output) + equals(t, `Page Size: 4096`, output) }) } @@ -28,5 +27,5 @@ func TestInfo(t *testing.T) { func TestInfo_NotFound(t *testing.T) { SetTestMode(true) output := run("info", "no/such/db") - assert.Equal(t, "stat no/such/db: no such file or directory", output) + equals(t, "stat no/such/db: no such file or directory", output) } -- cgit v1.2.3