We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d137fd commit bd1a2e6Copy full SHA for bd1a2e6
src/_pytest/mark/structures.py
@@ -298,7 +298,7 @@ def __getattr__(self, name):
298
for line in self._config.getini("markers"):
299
# example lines: "skipif(condition): skip the given test if..."
300
# or "hypothesis: tests which use Hypothesis", so to get the
301
- # marker name we we split on both `:` and `(`.
+ # marker name we split on both `:` and `(`.
302
marker = line.split(":")[0].split("(")[0].strip()
303
self._markers.add(marker)
304
0 commit comments