Skip to content

Commit

Permalink
Simplifying TupleTests
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Martin committed Mar 11, 2016
1 parent ba6b93d commit 42a0583
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/src/test/scala/cats/tests/TupleTests.scala
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class TupleTests extends CatsSuite {
(1, 2).show should === ("(1,2)")

forAll { fs: (String, String) =>
fs.show should === (s"(${fs._1},${fs._2})")
fs.show should === (fs.toString)
}

// Provide some "non-standard" Show instances to make sure the tuple2 is actually use the Show instances for the
Expand Down

0 comments on commit 42a0583

Please sign in to comment.