diff options
Diffstat (limited to 'tests/test_process.py')
-rw-r--r-- | tests/test_process.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_process.py b/tests/test_process.py index eac3ddda..c473cf9a 100644 --- a/tests/test_process.py +++ b/tests/test_process.py @@ -826,7 +826,7 @@ class EnvironmentTest(CoverageTest): sys.path[0:0] = [ r'{abc}', '/Users/somebody/temp/something/eggs/something-4.5.1-py2.7-xxx-10.13-x86_64.egg', - ] + ] import coverage.cmdline @@ -1076,7 +1076,7 @@ class FailUnderTest(CoverageTest): "b = 2\n" * 2000 + "if a > 3:\n" + " c = 4\n" - ) + ) self.make_data_file(lines={abs_file("ninety_nine_plus.py"): range(1, 2002)}) st, out = self.run_command_status("coverage report --fail-under=100") assert st == 2 |