Skip to content

Commit 38d687f

Browse files
committed
Fix typos in comments
1 parent 278b289 commit 38d687f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/_pytest/mark/structures.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ def _for_parametrize(cls, argnames, argvalues, func, config, function_definition
129129
)
130130
else:
131131
# empty parameter set (likely computed at runtime): create a single
132-
# parameter set with NOSET values, with the "empty parameter set" mark applied to it
132+
# parameter set with NOTSET values, with the "empty parameter set" mark applied to it
133133
mark = get_empty_parameterset_mark(config, argnames, func)
134134
parameters.append(
135135
ParameterSet(values=(NOTSET,) * len(argnames), marks=[mark], id=None)
@@ -152,7 +152,7 @@ def combined_with(self, other):
152152
:type other: Mark
153153
:rtype: Mark
154154
155-
combines by appending aargs and merging the mappings
155+
combines by appending args and merging the mappings
156156
"""
157157
assert self.name == other.name
158158
return Mark(

0 commit comments

Comments
 (0)