From d86ba62cfe59a5416dc0d7195964986c8fa72a78 Mon Sep 17 00:00:00 2001 From: Mark Tomko <610104+mtomko@users.noreply.github.com> Date: Wed, 24 May 2023 11:20:09 -0700 Subject: [PATCH] Use `.assert` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 77886b8..6b855da 100644 --- a/README.md +++ b/README.md @@ -136,7 +136,7 @@ class SuiteLocalExampleSuite extends CatsEffectSuite { test("third test") { IO(tempFileFixture()).flatMap { file => - assertIO(Files[IO].exists(file), true) + Files[IO].exists(file).assert } }