Skip to content
Snippets Groups Projects
Commit 9dc58664 authored by Ayub khan's avatar Ayub khan
Browse files

BOM-823

python3 compatibility
parent 12140e5b
No related merge requests found
......@@ -394,7 +394,7 @@ class TestXModuleHandler(TestCase):
def test_xmodule_handler_return_value(self):
response = self.module.xmodule_handler(self.request)
self.assertIsInstance(response, webob.Response)
self.assertEqual(response.body, '{}')
self.assertEqual(response.body.decode('utf-8'), '{}')
@ddt.data(
u'{"test_key": "test_value"}',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment