Skip to content

Commit 8cd23fb

Browse files
committed
Attept 2 at fixing broken test
1 parent 5b98d7b commit 8cd23fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_load_config_files.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ class ShlexConfigTap(Tap):
146146
with open(fname, 'w') as f:
147147
f.write('--a 21 # Important arg value\n\n# Multi-word quoted string\n--b "two three four"')
148148

149-
args = ShlexConfigTap(config_files=[fname]).parse_args()
149+
args = ShlexConfigTap(config_files=[fname]).parse_args([])
150150

151151
self.assertEqual(args.a, 21)
152152
self.assertEqual(args.b, 'two three four')

0 commit comments

Comments
 (0)