Make number notation consistent.

This commit is contained in:
Bjoern Rabenstein 2015-01-21 15:24:34 +01:00
parent 15c9ded5a3
commit 31b6c1fe12
1 changed files with 2 additions and 2 deletions

View File

@ -123,7 +123,7 @@ func TestSummaryConcurrency(t *testing.T) {
rand.Seed(42)
it := func(n uint32) bool {
mutations := int(n%10000 + 1e4)
mutations := int(n%1e4 + 1e4)
concLevel := int(n%5 + 1)
total := mutations * concLevel
@ -205,7 +205,7 @@ func TestSummaryVecConcurrency(t *testing.T) {
sort.Float64s(objectives)
it := func(n uint32) bool {
mutations := int(n%10000 + 1e4)
mutations := int(n%1e4 + 1e4)
concLevel := int(n%7 + 1)
vecLength := int(n%3 + 1)