summaryrefslogtreecommitdiff
path: root/testing/test_conftest.py
diff options
context:
space:
mode:
authorAndras Tim <andras.tim@gmail.com>2017-07-17 01:25:08 +0200
committerAndras Tim <andras.tim@gmail.com>2017-07-17 01:44:22 +0200
commit2e8caefcab33942a754ee7ddf7697fe487a4367a (patch)
treea18b77c24913758cffbf15ecfa461ccba3900ded /testing/test_conftest.py
parent3fabc4d21918a0927a1717e2616862400bde5440 (diff)
downloadpytest-2e8caefcab33942a754ee7ddf7697fe487a4367a.tar.gz
Fixed E225 flake8 errors
missing whitespace around operator
Diffstat (limited to 'testing/test_conftest.py')
-rw-r--r--testing/test_conftest.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/testing/test_conftest.py b/testing/test_conftest.py
index ed01c5410..3b01cc3cd 100644
--- a/testing/test_conftest.py
+++ b/testing/test_conftest.py
@@ -347,10 +347,10 @@ class TestConftestVisibility(object):
def test_parsefactories_relative_node_ids(
self, testdir, chdir,testarg, expect_ntests_passed):
dirs = self._setup_tree(testdir)
- print("pytest run in cwd: %s" %(
+ print("pytest run in cwd: %s" % (
dirs[chdir].relto(testdir.tmpdir)))
- print("pytestarg : %s" %(testarg))
- print("expected pass : %s" %(expect_ntests_passed))
+ print("pytestarg : %s" % (testarg))
+ print("expected pass : %s" % (expect_ntests_passed))
with dirs[chdir].as_cwd():
reprec = testdir.inline_run(testarg, "-q", "--traceconfig")
reprec.assertoutcome(passed=expect_ntests_passed)