summaryrefslogtreecommitdiff
path: root/tests/test_config/test_views.py
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2022-09-29 18:22:56 -0500
committerGitHub <noreply@github.com>2022-09-29 18:22:56 -0500
commit51a731c690b2644df206722767a74fee9339fb87 (patch)
treee45f75dbb1f209464e1bd1f69d22a24eb7bc36f5 /tests/test_config/test_views.py
parent97481ac5f713306e398ea2ffd283004a485df114 (diff)
parentd9a49e0afeb773d80ee6f6a60ad4936d433dc4f4 (diff)
downloadpyramid-51a731c690b2644df206722767a74fee9339fb87.tar.gz
pyramid-51a731c690b2644df206722767a74fee9339fb87.tar.bz2
pyramid-51a731c690b2644df206722767a74fee9339fb87.zip
Merge pull request #3701 from Pylons/pyupgrade-3.7
pyupgrade --py37-plus
Diffstat (limited to 'tests/test_config/test_views.py')
-rw-r--r--tests/test_config/test_views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_config/test_views.py b/tests/test_config/test_views.py
index 72f8f0145..c7d8c2721 100644
--- a/tests/test_config/test_views.py
+++ b/tests/test_config/test_views.py
@@ -4399,7 +4399,7 @@ def assert_similar_datetime(one, two):
one_attr = getattr(one, attr)
two_attr = getattr(two, attr)
if not one_attr == two_attr: # pragma: no cover
- raise AssertionError('%r != %r in %s' % (one_attr, two_attr, attr))
+ raise AssertionError(f'{one_attr!r} != {two_attr!r} in {attr}')
class DummyStaticURLInfo: