Skip to content

Commit

Permalink
Update tests for let change
Browse files Browse the repository at this point in the history
  • Loading branch information
propensive committed Dec 6, 2023
1 parent 6e251b3 commit 93f59f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/tests.scala
Original file line number Diff line number Diff line change
Expand Up @@ -262,11 +262,11 @@ object Tests extends Suite(t"Rudiments Tests"):
.assert(_ == 43)

test(t"Map over an unset Maybe"):
unsetInt.mm(_ + 1)
unsetInt.let(_ + 1)
.assert(_ == Unset)

test(t"Map over a set Maybe"):
setInt.mm(_ + 1)
setInt.let(_ + 1)
.assert(_ == 43)

test(t"Construct a new Maybe from a null value"):
Expand Down

0 comments on commit 93f59f0

Please sign in to comment.