Skip to content

Commit

Permalink
fix: ensure a list of input filees sorted in test case for cli
Browse files Browse the repository at this point in the history
  • Loading branch information
ssato committed May 12, 2024
1 parent 7d69980 commit 4ba66dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/cli/test_multi_inputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ def test_cli(
tmp_path: pathlib.Path
) -> None:
expected = datatypes.Expected(**exp)
ipaths = [str(p) for p in ipath.parent.glob("*.*")]
ipaths = sorted(str(p) for p in ipath.parent.glob("*.*"))
tdata = datatypes.TData(ipath, ipaths, opts, expected, oname, ref)
run_main(tdata, tmp_path)

0 comments on commit 4ba66dc

Please sign in to comment.