Skip to content

Commit d415f92

Browse files
committed
Fixed test names
1 parent 303a07b commit d415f92

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

utest/test_get_keyword_types.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,13 +184,13 @@ def test_keyword_only_arguments_many(lib_types):
184184

185185

186186
@pytest.mark.skipif(PY2, reason='Only applicable on Python 3')
187-
def test_keyword_only_arguments_many(lib_types):
187+
def test_keyword_mandatory_and_keyword_only_arguments(lib_types):
188188
types = lib_types.get_keyword_types('keyword_mandatory_and_keyword_only_arguments')
189189
assert types == {'arg': int, 'some': bool}
190190

191191

192192
@pytest.mark.skipif(PY2, reason='Only applicable on Python 3')
193-
def test_keyword_only_arguments_many(lib_types):
193+
def test_keyword_only_arguments_many_positional_and_default(lib_types):
194194
types = lib_types.get_keyword_types('keyword_only_arguments_many_positional_and_default')
195195
assert types == {'four': bool, 'five': type(None), 'six': bool}
196196

0 commit comments

Comments
 (0)