diff options
| -rw-r--r-- | pyramid/tests/fixtures/static/index.html | 2 | ||||
| -rw-r--r-- | pyramid/tests/test_integration.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/pyramid/tests/fixtures/static/index.html b/pyramid/tests/fixtures/static/index.html index 6498787a5..0470710b2 100644 --- a/pyramid/tests/fixtures/static/index.html +++ b/pyramid/tests/fixtures/static/index.html @@ -1 +1 @@ -<html>static</html> +<html>static</html>
\ No newline at end of file diff --git a/pyramid/tests/test_integration.py b/pyramid/tests/test_integration.py index f72e24bec..89b485b76 100644 --- a/pyramid/tests/test_integration.py +++ b/pyramid/tests/test_integration.py @@ -140,7 +140,7 @@ class TestStaticAppBase(IntegrationBase): def test_range_tilend(self): self.testapp.extra_environ = {'HTTP_RANGE':'bytes=-5'} res = self.testapp.get('/static/index.html', status=206) - self.assertEqual(res.body, b'tml>\n') + self.assertEqual(res.body, b'html>') def test_range_notbytes(self): self.testapp.extra_environ = {'HTTP_RANGE':'kHz=-5'} |
