diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-08-30 10:52:18 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-08-30 10:52:18 -0400 |
commit | 35312580d714c17ee486d2d9626a314dc5bfc8af (patch) | |
tree | bc23cafe8e628a5f50eeb8468b1ea5f1f5038a51 /tests/test_testing.py | |
parent | 848e8cbb2ea046680d6a539d8a7b6a7e214cf8a9 (diff) | |
download | python-coveragepy-35312580d714c17ee486d2d9626a314dc5bfc8af.tar.gz |
Pragmas for metacoverage
Diffstat (limited to 'tests/test_testing.py')
-rw-r--r-- | tests/test_testing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_testing.py b/tests/test_testing.py index 0cb6a86..54ab894 100644 --- a/tests/test_testing.py +++ b/tests/test_testing.py @@ -72,7 +72,7 @@ class EnvironmentAwareMixinTest(EnvironmentAwareMixin, TestCase): # The before state. # Not sure what environment variables are available in all of our # different testing environments, so try a bunch. - for envvar in ["HOME", "HOMEDIR", "USER", "SYSTEMDRIVE", "TEMP"]: + for envvar in ["HOME", "HOMEDIR", "USER", "SYSTEMDRIVE", "TEMP"]: # pragma: part covered if envvar in os.environ: original_text = os.environ[envvar] new_text = "Some Strange Text" |