Skip to content

Commit

Permalink
Merge pull request #1874 from LukaJCB/fix-typo-writer-tests
Browse files Browse the repository at this point in the history
Fix typo in WriterT tests
  • Loading branch information
fthomas authored Aug 30, 2017
2 parents f12f35c + c527fbf commit 6b33986
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/src/test/scala/cats/tests/WriterTTests.scala
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class WriterTTests extends CatsSuite {
}
}

test("reset consistencey"){
test("reset consistency"){
forAll { (i: Int, w1: WriterT[Id, Int, Int], w2: WriterT[Id, Int, Int]) =>
// if the value is the same, everything should be the same
w1.map(_ => i).reset should === (w2.map(_ => i).reset)
Expand Down

0 comments on commit 6b33986

Please sign in to comment.