Update scala to 2.13.3

This commit is contained in:
Eike Kettner
2020-08-01 01:03:43 +02:00
parent de36bed964
commit 0599176ae8
6 changed files with 11 additions and 10 deletions

View File

@ -20,10 +20,10 @@ object TestFiles {
lazy val letterDEText =
ExampleFiles.letter_de_txt
.readText[IO](8 * 1024, blocker)
.unsafeRunSync
.unsafeRunSync()
lazy val letterENText =
ExampleFiles.letter_en_txt
.readText[IO](8 * 1024, blocker)
.unsafeRunSync
.unsafeRunSync()
}

View File

@ -29,6 +29,6 @@ object ZipTest extends SimpleTestSuite {
}
.compile
.drain
.unsafeRunSync
.unsafeRunSync()
}
}