diff options
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() |