Skip to content
This repository was archived by the owner on Mar 9, 2019. It is now read-only.

Commit 7d03ba9

Browse files
committed
FIX: Incorrect threadCount in simulation_test.go
TestSimulate_1op_1p should pass 1 as the threadCount instead of 100
1 parent 34a0fa5 commit 7d03ba9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

simulation_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"github.com/boltdb/bolt"
1111
)
1212

13-
func TestSimulate_1op_1p(t *testing.T) { testSimulate(t, 100, 1) }
13+
func TestSimulate_1op_1p(t *testing.T) { testSimulate(t, 1, 1) }
1414
func TestSimulate_10op_1p(t *testing.T) { testSimulate(t, 10, 1) }
1515
func TestSimulate_100op_1p(t *testing.T) { testSimulate(t, 100, 1) }
1616
func TestSimulate_1000op_1p(t *testing.T) { testSimulate(t, 1000, 1) }

0 commit comments

Comments
 (0)