Skip to content

Commit bd1a2e6

Browse files
committed
fix typo
1 parent 1d137fd commit bd1a2e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/_pytest/mark/structures.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ def __getattr__(self, name):
298298
for line in self._config.getini("markers"):
299299
# example lines: "skipif(condition): skip the given test if..."
300300
# or "hypothesis: tests which use Hypothesis", so to get the
301-
# marker name we we split on both `:` and `(`.
301+
# marker name we split on both `:` and `(`.
302302
marker = line.split(":")[0].split("(")[0].strip()
303303
self._markers.add(marker)
304304

0 commit comments

Comments
 (0)