summaryrefslogtreecommitdiff
path: root/tests/coveragetest.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/coveragetest.py')
-rw-r--r--tests/coveragetest.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/coveragetest.py b/tests/coveragetest.py
index 0960722b..52b0a6ab 100644
--- a/tests/coveragetest.py
+++ b/tests/coveragetest.py
@@ -275,13 +275,11 @@ class CoverageTest(
def assert_exists(self, fname):
"""Assert that `fname` is a file that exists."""
- msg = "File %r should exist" % fname
- assert os.path.exists(fname), msg
+ assert os.path.exists(fname), f"File {fname!r} should exist"
def assert_doesnt_exist(self, fname):
"""Assert that `fname` is a file that doesn't exist."""
- msg = "File %r shouldn't exist" % fname
- assert not os.path.exists(fname), msg
+ assert not os.path.exists(fname), f"File {fname!r} shouldn't exist"
def assert_file_count(self, pattern, count):
"""Assert that there are `count` files matching `pattern`."""