Skip to content

Commit abf2a47

Browse files
committed
test: adjust test cases for boj submit args parser
1 parent 9fd34f6 commit abf2a47

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_args_resolver.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,18 +128,18 @@ def test_run_command_parser(test_in, expected):
128128
(
129129
["submit", "1234"],
130130
Namespace(
131-
command="submit", problem_id="1234", open="onlyaccepted", timeout=10
131+
command="submit", problem_id="1234", open="onlyaccepted", timeout=30
132132
),
133133
),
134134
(
135135
["submit", "1234"],
136136
Namespace(
137-
command="submit", problem_id="1234", open="onlyaccepted", timeout=10
137+
command="submit", problem_id="1234", open="onlyaccepted", timeout=30
138138
),
139139
),
140140
(
141141
["submit", "1234", "--open", "open"],
142-
Namespace(command="submit", problem_id="1234", open="open", timeout=10),
142+
Namespace(command="submit", problem_id="1234", open="open", timeout=30),
143143
),
144144
(
145145
["submit", "1234", "--timeout", "123"],

0 commit comments

Comments
 (0)