Thanks to visit codestin.com Credit goes to github.com
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.
2 parents 9bdcdf9 + b00e8a7 commit 5eee89cCopy full SHA for 5eee89c
1 file changed
IPython/utils/tests/test_path.py
@@ -390,7 +390,7 @@ def test_match_posix(self):
390
([r'a\*', 'a*'], ['a*'] + self.filenames_start_with_a),
391
([r'a\[012]'], ['a[012]']),
392
]:
393
- yield (self.check_match, patterns, matches)
+ self.check_match(patterns, matches)
394
395
@skip_if_not_win32
396
def test_match_windows(self):
@@ -401,7 +401,7 @@ def test_match_windows(self):
401
([r'a\*', 'a*'], [r'a\*'] + self.filenames_start_with_a),
402
([r'a\[012]'], [r'a\[012]']),
403
404
405
406
407
# TODO : pytest.mark.parametrise once nose is gone.
0 commit comments