diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2021-05-01 18:25:06 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-05-02 07:38:19 -0400 |
commit | ddf5ba8cfcfe7d133ddbf888cc6e3af79863c712 (patch) | |
tree | 5cd11a9f699ec93711422b00b519d096b1135ff3 /tests/test_html.py | |
parent | 4c4ba2e0bc9ec663fa3772d2b088f736345a65a1 (diff) | |
download | python-coveragepy-git-ddf5ba8cfcfe7d133ddbf888cc6e3af79863c712.tar.gz |
refactor: pyupgrade --py36-plus tests/**.py
Diffstat (limited to 'tests/test_html.py')
-rw-r--r-- | tests/test_html.py | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/tests/test_html.py b/tests/test_html.py index c561a5d2..3b3250e4 100644 --- a/tests/test_html.py +++ b/tests/test_html.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 # For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt @@ -12,7 +11,7 @@ import os.path import re import sys -import mock +from unittest import mock import pytest import coverage @@ -93,11 +92,11 @@ class HtmlTestHelpers(CoverageTest): self.assert_recent_datetime( timestamp, seconds=120, - msg="Timestamp is wrong: {}".format(timestamp), + msg=f"Timestamp is wrong: {timestamp}", ) -class FileWriteTracker(object): +class FileWriteTracker: """A fake object to track how `open` is used to write files.""" def __init__(self, written): self.written = written @@ -113,7 +112,7 @@ class HtmlDeltaTest(HtmlTestHelpers, CoverageTest): """Tests of the HTML delta speed-ups.""" def setup_test(self): - super(HtmlDeltaTest, self).setup_test() + super().setup_test() # At least one of our tests monkey-patches the version of coverage.py, # so grab it here to restore it later. @@ -135,7 +134,7 @@ class HtmlDeltaTest(HtmlTestHelpers, CoverageTest): self.files_written = set() mock_open = FileWriteTracker(self.files_written).open with mock.patch("coverage.html.open", mock_open): - return super(HtmlDeltaTest, self).run_coverage(covargs=covargs, htmlargs=htmlargs) + return super().run_coverage(covargs=covargs, htmlargs=htmlargs) def assert_htmlcov_files_exist(self): """Assert that all the expected htmlcov files exist.""" @@ -555,7 +554,7 @@ class HtmlStaticFileTest(CoverageTest): """Tests of the static file copying for the HTML report.""" def setup_test(self): - super(HtmlStaticFileTest, self).setup_test() + super().setup_test() original_path = list(coverage.html.STATIC_PATH) self.addCleanup(setattr, coverage.html, 'STATIC_PATH', original_path) @@ -1039,7 +1038,7 @@ assert len(math) == 18 doesnt_contain("out/tabbed_py.html", "\t") def test_unicode(self): - surrogate = u"\U000e0100" + surrogate = "\U000e0100" self.make_file("unicode.py", """\ # -*- coding: utf-8 -*- |