Skip to content

Commit ff4636c

Browse files
committed
This commit fixes failed test suites
1 parent 281b07c commit ff4636c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_argsParser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def test_arg_parser_with_source_file(mock_config):
4040
def test_arg_parser_with_more_than_two_source_files(mock_config):
4141
with patch("sys.argv", ["code_mage.py", "example.js", "sample.js"]):
4242
args = arg_parser(mock_config)
43-
assert args.source_files == ["example.js"]
43+
assert args.source_files == ["example.js", "sample.js"]
4444
assert args.language == "python"
4545
assert args.output == "result"
4646

0 commit comments

Comments
 (0)