summaryrefslogtreecommitdiff
path: root/tests/helpers.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2022-05-01 08:16:06 -0400
committerNed Batchelder <ned@nedbatchelder.com>2022-05-01 13:00:38 -0400
commit420c01394a31415d7a7cbb80be196bcfca48482c (patch)
treed71672faede9de984c024eadc678ae05ff5af558 /tests/helpers.py
parent53f00a00b7cfb5e856136ea600844160746d6ae2 (diff)
downloadpython-coveragepy-git-420c01394a31415d7a7cbb80be196bcfca48482c.tar.gz
style: parens should indent the same as their opening line
Diffstat (limited to 'tests/helpers.py')
-rw-r--r--tests/helpers.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/helpers.py b/tests/helpers.py
index 890bd7c5..3d177824 100644
--- a/tests/helpers.py
+++ b/tests/helpers.py
@@ -45,7 +45,7 @@ def run_command(cmd):
stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT
- )
+ )
output, _ = proc.communicate()
status = proc.returncode
@@ -135,7 +135,7 @@ class CheckUniqueFilenames:
"""The replacement method. Check that we don't have dupes."""
assert filename not in self.filenames, (
f"File name {filename!r} passed to {self.wrapped!r} twice"
- )
+ )
self.filenames.add(filename)
ret = self.wrapped(filename, *args, **kwargs)
return ret