Skip to content

Commit

Permalink
Fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
geirolz committed Oct 9, 2023
1 parent 9de5766 commit 774b94b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shared/src/test/scala/mouse/FEitherSyntaxTest.scala
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class FEitherSyntaxTest extends MouseSuite {
assertEquals(leftValue.getOrElseIn(0), List(0))
}

test("FEitherSyntax.getOrRethrow"){
test("FEitherSyntax.getOrRethrow") {
val ex1 = new RuntimeException("BOOM 1!")
assertEquals(Try(1.asRight).getOrRethrow, Success(1))
assertEquals(Try(ex1.asLeft).getOrRethrow, Failure(ex1))
Expand Down

0 comments on commit 774b94b

Please sign in to comment.