diff options
| author | Michael Merickel <michael@merickel.org> | 2018-11-18 23:29:18 -0600 |
|---|---|---|
| committer | Michael Merickel <michael@merickel.org> | 2018-11-18 23:29:18 -0600 |
| commit | 8f2fbe31c6c1aaa1b7792249ebeb984946e7a5e1 (patch) | |
| tree | 0f2b957902948ef58e2a45783af346267cbb4c2c /tests/test_integration.py | |
| parent | 80cce1874f90a73f74d7c9ef8156df3637694387 (diff) | |
| download | pyramid-8f2fbe31c6c1aaa1b7792249ebeb984946e7a5e1.tar.gz pyramid-8f2fbe31c6c1aaa1b7792249ebeb984946e7a5e1.tar.bz2 pyramid-8f2fbe31c6c1aaa1b7792249ebeb984946e7a5e1.zip | |
stop using u-prefix strings
Diffstat (limited to 'tests/test_integration.py')
| -rw-r--r-- | tests/test_integration.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_integration.py b/tests/test_integration.py index d1f65274b..e6dccbb5b 100644 --- a/tests/test_integration.py +++ b/tests/test_integration.py @@ -726,8 +726,8 @@ class UnicodeInURLTest(unittest.TestCase): res = testapp.get(request_path, status=404) # Pyramid default 404 handler outputs: - # u'404 Not Found\n\nThe resource could not be found.\n\n\n' - # u'/avalia\xe7\xe3o_participante\n\n' + # '404 Not Found\n\nThe resource could not be found.\n\n\n' + # '/avalia\xe7\xe3o_participante\n\n' self.assertTrue(request_path_unicode in res.text) def test_unicode_in_url_200(self): |
