diff options
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_print.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_print.py b/Lib/test/test_print.py index 80993279b8..e6434feaf5 100644 --- a/Lib/test/test_print.py +++ b/Lib/test/test_print.py @@ -161,14 +161,14 @@ class TestPy2MigrationHint(unittest.TestCase): with self.assertRaises(TypeError) as context: print >> sys.stderr, "message" self.assertIn('Did you mean "print(<message>, ' - 'file=<output_stream>)', str(context.exception)) + 'file=<output_stream>)"?', str(context.exception)) # Test correct hint is produced in the case where RHS implements # __rrshift__ but returns NotImplemented with self.assertRaises(TypeError) as context: print >> 42 self.assertIn('Did you mean "print(<message>, ' - 'file=<output_stream>)', str(context.exception)) + 'file=<output_stream>)"?', str(context.exception)) # Test stream redirection hint is specific to print with self.assertRaises(TypeError) as context: |