diff options
author | Panagiotis Siatras <psiatras@gmail.com> | 2016-01-07 21:15:00 +0200 |
---|---|---|
committer | Panagiotis Siatras <psiatras@gmail.com> | 2016-01-07 21:15:00 +0200 |
commit | 7d03ba92d027ce79a406adeb5b3f13010dfc595d (patch) | |
tree | bd0b891d774d42ed92d502d31f9188be624d56ac | |
parent | Merge pull request #477 from benbjohnson/testing (diff) | |
download | dedo-7d03ba92d027ce79a406adeb5b3f13010dfc595d.tar.gz dedo-7d03ba92d027ce79a406adeb5b3f13010dfc595d.tar.xz |
FIX: Incorrect threadCount in simulation_test.go
TestSimulate_1op_1p should pass 1 as the threadCount instead of 100
-rw-r--r-- | simulation_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/simulation_test.go b/simulation_test.go index c691527..3831016 100644 --- a/simulation_test.go +++ b/simulation_test.go @@ -10,7 +10,7 @@ import ( "github.com/boltdb/bolt" ) -func TestSimulate_1op_1p(t *testing.T) { testSimulate(t, 100, 1) } +func TestSimulate_1op_1p(t *testing.T) { testSimulate(t, 1, 1) } func TestSimulate_10op_1p(t *testing.T) { testSimulate(t, 10, 1) } func TestSimulate_100op_1p(t *testing.T) { testSimulate(t, 100, 1) } func TestSimulate_1000op_1p(t *testing.T) { testSimulate(t, 1000, 1) } |