Bump up MaxCountScale in TestTXTRRQuick

Increases number of test iterations which should cover more corner-cases.
This commit is contained in:
Andrew Tunnell-Jones 2014-03-02 10:15:26 +00:00
parent 0a5cb5c80a
commit 22f3256df4
1 changed files with 2 additions and 1 deletions

View File

@ -251,7 +251,8 @@ func TestTXTRRQuick(t *testing.T) {
}
return true
}
if err := quick.Check(f, nil); err != nil {
c := &quick.Config{MaxCountScale: 10}
if err := quick.Check(f, c); err != nil {
t.Error(err)
}
}