We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63d0a93 commit cbe0bc8Copy full SHA for cbe0bc8
utest/utils/test_argumentparser.py
@@ -221,7 +221,7 @@ def test_get_pythonpath(self):
221
def test_arguments_are_globbed(self):
222
_, args = self.ap.parse_args([__file__.replace('test_', '?????')])
223
assert_equals(args, [__file__])
224
- _, args = self.ap.parse_args([os.path.abspath(os.curdir) + '/*'])
+ _, args = self.ap.parse_args([os.path.join(os.path.abspath('.'), '*')])
225
assert_true(len(args) > 1)
226
227
def test_arguments_with_glob_patterns_arent_removed_if_they_dont_match(self):
0 commit comments