diff options
| author | Chris McDonough <chrism@plope.com> | 2012-01-05 09:10:03 -0500 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2012-01-05 09:10:03 -0500 |
| commit | 2bf3f5c62b374bd1fa4cc87166f3073a1101ea12 (patch) | |
| tree | 4036f2f44dab5610615b5900b9eef7016cdfe752 | |
| parent | 933944c12cf09c2818ebf9f82e9c0c3efd5f1d41 (diff) | |
| download | pyramid-2bf3f5c62b374bd1fa4cc87166f3073a1101ea12.tar.gz pyramid-2bf3f5c62b374bd1fa4cc87166f3073a1101ea12.tar.bz2 pyramid-2bf3f5c62b374bd1fa4cc87166f3073a1101ea12.zip | |
coverage
| -rw-r--r-- | pyramid/tests/test_urldispatch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyramid/tests/test_urldispatch.py b/pyramid/tests/test_urldispatch.py index d7dd2f44a..e15242f75 100644 --- a/pyramid/tests/test_urldispatch.py +++ b/pyramid/tests/test_urldispatch.py @@ -120,7 +120,7 @@ class RoutesMapperTests(unittest.TestCase): def test___call__pathinfo_cant_be_decoded(self): from pyramid.exceptions import URLDecodeError mapper = self._makeOne() - if PY3: + if PY3: # pragma: no cover path_info = b'\xff\xfe\xe6\x00'.decode('latin-1') else: path_info = b'\xff\xfe\xe6\x00' |
