You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(test): use cross-platform assertion for missing file error
The `test_cli_missing_input_file` integration test was failing on
Ubuntu/POSIX runners because it asserted the Windows-specific error
message fragment "cannot find the file specified" for a non-existent
input file.
This commit updates the assertion using `predicates::or` to accept
either the standard POSIX error message ("No such file or directory")
or the Windows fragment, ensuring the test passes on all target
platforms (Linux, macOS, Windows).
0 commit comments