diff options
Diffstat (limited to 'tests/test_html.py')
-rw-r--r-- | tests/test_html.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/test_html.py b/tests/test_html.py index bd6f7bd8..64be3cb6 100644 --- a/tests/test_html.py +++ b/tests/test_html.py @@ -995,10 +995,9 @@ assert len(math) == 18 surrogate = "db40,dd00: x󠄀" """) - # pylint: disable=import-error, redefined-builtin cov = coverage.Coverage() - unicode = self.start_import_stop(cov, "unicode") - cov.html_report(unicode, directory="out") + unimod = self.start_import_stop(cov, "unicode") + cov.html_report(unimod, directory="out") compare_html(gold_path("html/unicode"), "out") contains( |