summaryrefslogtreecommitdiff
path: root/testing
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
commit3fabc4d21918a0927a1717e2616862400bde5440 (patch)
tree82da09cf23841fea79057ffce10ab057d61a3cd1 /testing
parentf640e0cb0481b239d1e3c705d0dbadb2a618ef17 (diff)
downloadpytest-3fabc4d21918a0927a1717e2616862400bde5440.tar.gz
Fixed E222 flake8 errors
multiple spaces after operator
Diffstat (limited to 'testing')
-rw-r--r--testing/test_collection.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/testing/test_collection.py b/testing/test_collection.py
index 6dcb7eda2..834eaa300 100644
--- a/testing/test_collection.py
+++ b/testing/test_collection.py
@@ -347,11 +347,11 @@ class TestSession(object):
assert rcol.fspath == subdir
parts = rcol._parsearg(p.basename)
- assert parts[0] == target
+ assert parts[0] == target
assert len(parts) == 1
parts = rcol._parsearg(p.basename + "::test_func")
- assert parts[0] == target
- assert parts[1] == "test_func"
+ assert parts[0] == target
+ assert parts[1] == "test_func"
assert len(parts) == 2
def test_collect_topdir(self, testdir):