diff options
author | Ben Johnson <benbjohnson@yahoo.com> | 2016-01-07 13:50:34 -0700 |
---|---|---|
committer | Ben Johnson <benbjohnson@yahoo.com> | 2016-01-07 13:50:34 -0700 |
commit | 25b28102db2053fa885b2a4798d5dfa94745f4b6 (patch) | |
tree | bd0b891d774d42ed92d502d31f9188be624d56ac | |
parent | Merge pull request #477 from benbjohnson/testing (diff) | |
parent | Merge pull request #1 from azazeal/fix-simulation_test-threadCount (diff) | |
download | dedo-25b28102db2053fa885b2a4798d5dfa94745f4b6.tar.gz dedo-25b28102db2053fa885b2a4798d5dfa94745f4b6.tar.xz |
Merge pull request #479 from azazeal/master
Wrong threadCount passed to TestSimulate_1op_1p
-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) } |