Skip to content

Commit

Permalink
Merge pull request #335 from nrinaudo/fix-2.12-iterator
Browse files Browse the repository at this point in the history
Remove calls to inexistant iterator method
  • Loading branch information
nrinaudo authored Sep 6, 2022
2 parents dc3104e + bbb24e8 commit d83a0ac
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ class HeaderDecoderZipTests extends AnyFunSuite with Matchers {

val lines = new ByteArrayInputStream(csv.getBytes)
.asCsvReader[(String, Option[String], String)](rfc.withHeader)
.iterator
.toList

lines should be(List(Right(("foo", None, "bar")), Right(("far", None, "baz"))))
Expand Down

0 comments on commit d83a0ac

Please sign in to comment.