Skip to content

Commit

Permalink
Add parentheses for Dotty (#3322)
Browse files Browse the repository at this point in the history
  • Loading branch information
travisbrown authored Feb 26, 2020
1 parent 2e12f4d commit 469f1eb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ class ReaderWriterStateTSuite extends CatsSuite {
}

test("pure + listen + map(_._1) + runEmptyA is identity") {
forAll { i: Int =>
forAll { (i: Int) =>
IndexedReaderWriterStateT
.pure[Id, String, String, Int, Int](i)
.listen
Expand All @@ -339,7 +339,7 @@ class ReaderWriterStateTSuite extends CatsSuite {
}

test("tell + listen + map(_._2) + runEmptyA is identity") {
forAll { s: String =>
forAll { (s: String) =>
IndexedReaderWriterStateT
.tell[Id, String, String, Int](s)
.listen
Expand Down

0 comments on commit 469f1eb

Please sign in to comment.