diff options
Diffstat (limited to 'tests/test_filereporter.py')
-rw-r--r-- | tests/test_filereporter.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_filereporter.py b/tests/test_filereporter.py index 1e8513f8..e2c71fa2 100644 --- a/tests/test_filereporter.py +++ b/tests/test_filereporter.py @@ -103,5 +103,5 @@ class FileReporterTest(UsingModulesMixin, CoverageTest): z1 = PythonFileReporter(zip1) z1z1 = PythonFileReporter(zip1.zip1) - assert z1.source() == u"" - assert u"# My zip file!" in z1z1.source().splitlines() + assert z1.source() == "" + assert "# My zip file!" in z1z1.source().splitlines() |