summaryrefslogtreecommitdiff
path: root/testing
diff options
context:
space:
mode:
authorRonny Pfannschmidt <opensource@ronnypfannschmidt.de>2018-05-18 10:48:44 +0200
committerRonny Pfannschmidt <opensource@ronnypfannschmidt.de>2018-05-23 16:45:58 +0200
commit3e1590bcfcce1a28619abc31425f407cb0459b75 (patch)
treea8e927329b9792948f2707271d416a8cde7b9e9d /testing
parent86fc31db8d3b5ae33d18be43efdf23ff6f2ce040 (diff)
downloadpytest-3e1590bcfcce1a28619abc31425f407cb0459b75.tar.gz
sort out pyupgrade fallout
Diffstat (limited to 'testing')
-rw-r--r--testing/test_mark.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/testing/test_mark.py b/testing/test_mark.py
index f79baf0fc..ae8fe79b2 100644
--- a/testing/test_mark.py
+++ b/testing/test_mark.py
@@ -747,8 +747,10 @@ class TestFunctional(object):
items = {x.name: x for x in items}
for name, expected_markers in expected.items():
markers = items[name].keywords._markers
- marker_names = {name for (name, v) in markers.items()
- if isinstance(v, MarkInfo)}
+ marker_names = {
+ name for (name, v) in markers.items()
+ if isinstance(v, MarkInfo)
+ }
assert marker_names == set(expected_markers)
@pytest.mark.issue1540