diff options
| author | Michael Merickel <michael@merickel.org> | 2022-09-29 18:22:56 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-29 18:22:56 -0500 |
| commit | 51a731c690b2644df206722767a74fee9339fb87 (patch) | |
| tree | e45f75dbb1f209464e1bd1f69d22a24eb7bc36f5 /tests/test_scripts | |
| parent | 97481ac5f713306e398ea2ffd283004a485df114 (diff) | |
| parent | d9a49e0afeb773d80ee6f6a60ad4936d433dc4f4 (diff) | |
| download | pyramid-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_scripts')
| -rw-r--r-- | tests/test_scripts/test_proutes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_scripts/test_proutes.py b/tests/test_scripts/test_proutes.py index 8ac5d0fd1..c0aeb01d3 100644 --- a/tests/test_scripts/test_proutes.py +++ b/tests/test_scripts/test_proutes.py @@ -320,7 +320,7 @@ class TestPRoutesCommand(unittest.TestCase): compare_to = L[-1].split()[:3] view_module = 'tests.test_scripts.dummy' view_str = '<tests.test_scripts.dummy.DummyMultiView' - final = '%s.%s' % (view_module, view_str) + final = f'{view_module}.{view_str}' self.assertEqual(compare_to, ['a', '/a', final]) |
