Skip to content

Commit eb81d98

Browse files
authored
Merge pull request #114 from kastoestoramadus/patch-1
Update TypeSignatures.scala
2 parents 0fdc520 + 03de110 commit eb81d98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/scala/stdlib/TypeSignatures.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ object TypeSignatures extends FlatSpec with Matchers with org.scalaexercises.def
4141
}
4242

4343
val intRand = new IntRandomizer
44-
(intRand.draw < Int.MaxValue) should be(res0)
44+
(intRand.draw <= Int.MaxValue) should be(res0)
4545
}
4646

4747
/** Class meta-information can be retrieved by class name by using `classOf[className]`:

0 commit comments

Comments
 (0)