diff options
author | Ben Johnson <benbjohnson@yahoo.com> | 2014-07-26 17:17:03 -0600 |
---|---|---|
committer | Ben Johnson <benbjohnson@yahoo.com> | 2014-07-26 17:17:03 -0600 |
commit | 44e6192d2bdecf1336e372686f15417ed98c4b16 (patch) | |
tree | 3a51074bfdd1275706f4d550392280efb93bee18 /simulation_test.go | |
parent | Move tests to a test package. (diff) | |
download | dedo-44e6192d2bdecf1336e372686f15417ed98c4b16.tar.gz dedo-44e6192d2bdecf1336e372686f15417ed98c4b16.tar.xz |
Remove testify.
Diffstat (limited to 'simulation_test.go')
-rw-r--r-- | simulation_test.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/simulation_test.go b/simulation_test.go index 1c2aaf8..ceb8bae 100644 --- a/simulation_test.go +++ b/simulation_test.go @@ -8,7 +8,6 @@ import ( "testing" "github.com/boltdb/bolt" - "github.com/stretchr/testify/assert" ) func TestSimulate_1op_1p(t *testing.T) { testSimulate(t, 100, 1) } @@ -90,7 +89,7 @@ func testSimulate(t *testing.T, threadCount, parallelism int) { versions[tx.ID()] = qdb mutex.Unlock() - assert.NoError(t, tx.Commit()) + ok(t, tx.Commit()) }() } else { defer tx.Rollback() |