aboutsummaryrefslogtreecommitdiff
path: root/simulation_test.go
diff options
context:
space:
mode:
authorPanagiotis Siatras <psiatras@gmail.com>2016-01-07 21:15:50 +0200
committerPanagiotis Siatras <psiatras@gmail.com>2016-01-07 21:15:50 +0200
commitcd49fd639335ac453027b6c0285185488cfc7bf4 (patch)
treebd0b891d774d42ed92d502d31f9188be624d56ac /simulation_test.go
parentMerge pull request #477 from benbjohnson/testing (diff)
parentFIX: Incorrect threadCount in simulation_test.go (diff)
downloaddedo-cd49fd639335ac453027b6c0285185488cfc7bf4.tar.gz
dedo-cd49fd639335ac453027b6c0285185488cfc7bf4.tar.xz
Merge pull request #1 from azazeal/fix-simulation_test-threadCount
FIX: Incorrect threadCount in simulation_test.go
Diffstat (limited to 'simulation_test.go')
-rw-r--r--simulation_test.go2
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) }