Skip to content

Commit c203b7a

Browse files
committed
add missing b prefix
1 parent 1850b0f commit c203b7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xmpp_http_upload/tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ def test_json(self):
223223
def test_unknown_content_type(self):
224224
response = self.req({'jid': '[email protected]', 'output': 'application/foobar'})
225225
self.assertEquals(response.status_code, 400)
226-
self.assertEquals(response.content, 'Unsupported content type in output.')
226+
self.assertEquals(response.content, b'Unsupported content type in output.')
227227

228228

229229
class UploadTest(TestCase):

0 commit comments

Comments
 (0)