diff options
author | Panagiotis Siatras <psiatras@gmail.com> | 2016-01-07 21:15:50 +0200 |
---|---|---|
committer | Panagiotis Siatras <psiatras@gmail.com> | 2016-01-07 21:15:50 +0200 |
commit | cd49fd639335ac453027b6c0285185488cfc7bf4 (patch) | |
tree | bd0b891d774d42ed92d502d31f9188be624d56ac | |
parent | Merge pull request #477 from benbjohnson/testing (diff) | |
parent | FIX: Incorrect threadCount in simulation_test.go (diff) | |
download | dedo-cd49fd639335ac453027b6c0285185488cfc7bf4.tar.gz dedo-cd49fd639335ac453027b6c0285185488cfc7bf4.tar.xz |
Merge pull request #1 from azazeal/fix-simulation_test-threadCount
FIX: Incorrect threadCount in simulation_test.go
-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) } |