Skip to content

Commit cdef513

Browse files
committed
Updated batch size so as not to polute the state
1 parent 63c68e7 commit cdef513

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/main_tests/test_main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -330,13 +330,13 @@ def test_parse_args_batches(self):
330330
"--test_config",
331331
str(self.test_config_path),
332332
"--output",
333-
str(self.output_path.parent / "main.json"),
333+
str(self.output_path.parent / "main_batch.json"),
334334
"--batch-size",
335335
"5",
336336
],
337337
):
338338
main()
339-
self.assertTrue((self.output_path.parent / "main.json").exists())
339+
self.assertTrue((self.output_path.parent / "main_batch.json").exists())
340340

341341
def tearDown(self):
342342
if self.output_path.parent.exists():

0 commit comments

Comments
 (0)