Skip to content

Commit cbe0bc8

Browse files
committed
cleanup
1 parent 63d0a93 commit cbe0bc8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utest/utils/test_argumentparser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ def test_get_pythonpath(self):
221221
def test_arguments_are_globbed(self):
222222
_, args = self.ap.parse_args([__file__.replace('test_', '?????')])
223223
assert_equals(args, [__file__])
224-
_, args = self.ap.parse_args([os.path.abspath(os.curdir) + '/*'])
224+
_, args = self.ap.parse_args([os.path.join(os.path.abspath('.'), '*')])
225225
assert_true(len(args) > 1)
226226

227227
def test_arguments_with_glob_patterns_arent_removed_if_they_dont_match(self):

0 commit comments

Comments
 (0)