From 805184fcbb0579589cce02e86aa3fd51ad76680d Mon Sep 17 00:00:00 2001 From: hugovk Date: Fri, 1 Aug 2014 12:11:03 +0300 Subject: [PATCH] Fi xffor Python 3 --- Tests/test_file_iptc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/test_file_iptc.py b/Tests/test_file_iptc.py index 57c2011b6..bd331e5b2 100644 --- a/Tests/test_file_iptc.py +++ b/Tests/test_file_iptc.py @@ -70,7 +70,7 @@ class TestFileIptc(PillowTestCase): sys.stdout = old_stdout # Assert - self.assertEqual(mystdout.getvalue(), b"61 62 63 \n") + self.assertEqual(mystdout.getvalue(), "61 62 63 \n") if __name__ == '__main__':