We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee0763d commit 1b136b0Copy full SHA for 1b136b0
src/main/scala/stdlib/Asserts.scala
@@ -46,9 +46,9 @@ object Asserts extends FlatSpec with Matchers with exercise.Section {
46
*/
47
def booleanAsserts(res0: Int) {
48
val v1 = 4
49
- v1 === res0
+ v1 shouldEqual res0
50
51
- /** `===` is an assert. It is from ScalaTest, not from the Scala language. */
+ /** `shouldEqual` is an assertion. It is from ScalaTest, not from the Scala language. */
52
}
53
54
/** Sometimes we expect you to fill in the values
0 commit comments