summaryrefslogtreecommitdiff
path: root/tests/test_annotate.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_annotate.py')
-rw-r--r--tests/test_annotate.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_annotate.py b/tests/test_annotate.py
index 97f2080b..09893143 100644
--- a/tests/test_annotate.py
+++ b/tests/test_annotate.py
@@ -32,7 +32,7 @@ class AnnotationGoldTest(CoverageTest):
self.make_file("b/__init__.py")
self.make_file("b/b.py", """\
def b(x):
- msg = "x is %s" % x
+ msg = f"x is {x}"
print(msg)
""")