Merge pull request #479 from azazeal/master

Wrong threadCount passed to TestSimulate_1op_1p
master
Ben Johnson 2016-01-07 13:50:34 -07:00
commit 25b28102db
1 changed files with 1 additions and 1 deletions

View File

@ -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) }