Skip to content

Commit 68136f4

Browse files
committed
revert test parameters
1 parent f01d9e1 commit 68136f4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sulid_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ func TestRoundTrips(t *testing.T) {
178178
id == sulid.MustParseStrict(id.String())
179179
}
180180

181-
err := quick.Check(prop, &quick.Config{MaxCount: 1e7})
181+
err := quick.Check(prop, &quick.Config{MaxCount: 1e5})
182182
if err != nil {
183183
t.Fatal(err)
184184
}
@@ -294,7 +294,7 @@ func TestLexicographicalOrder(t *testing.T) {
294294
top = next
295295
}
296296

297-
if err := quick.Check(prop, &quick.Config{MaxCount: 1e7}); err != nil {
297+
if err := quick.Check(prop, &quick.Config{MaxCount: 1e6}); err != nil {
298298
t.Fatal(err)
299299
}
300300
}
@@ -403,7 +403,7 @@ func TestTimestampRoundTrips(t *testing.T) {
403403
return ts == sulid.Timestamp(sulid.Time(ts))
404404
}
405405

406-
err := quick.Check(prop, &quick.Config{MaxCount: 1e6})
406+
err := quick.Check(prop, &quick.Config{MaxCount: 1e5})
407407
if err != nil {
408408
t.Fatal(err)
409409
}

0 commit comments

Comments
 (0)