summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pyramid/tests/test_integration.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyramid/tests/test_integration.py b/pyramid/tests/test_integration.py
index bb33c5c27..bf3960b2d 100644
--- a/pyramid/tests/test_integration.py
+++ b/pyramid/tests/test_integration.py
@@ -179,12 +179,12 @@ class TestEventOnlySubscribers(IntegrationBase, unittest.TestCase):
def test_sendfoo(self):
res = self.testapp.get('/sendfoo', status=200)
- self.assertEqual(sorted(res.body.split()), ['foo', 'fooyup'])
+ self.assertEqual(sorted(res.body.split()), [b'foo', b'fooyup'])
def test_sendfoobar(self):
res = self.testapp.get('/sendfoobar', status=200)
self.assertEqual(sorted(res.body.split()),
- ['foobar', 'foobar2', 'foobaryup', 'foobaryup2'])
+ [b'foobar', b'foobar2', b'foobaryup', b'foobaryup2'])
class TestStaticAppUsingAbsPath(TestStaticAppBase, unittest.TestCase):
package = 'pyramid.tests.pkgs.static_abspath'