We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3fab3d commit 34f7188Copy full SHA for 34f7188
1 file changed
umbtest/tools.py
@@ -459,7 +459,7 @@ def umb_to_umb(
459
log_file: pathlib.Path
460
):
461
if self._mode == "ats":
462
- ats = umbi.ats.read(input_file)
+ ats = umbi.ats.read(input_file, strict=True)
463
umbi.ats.write(ats, output_file)
464
reported_results = ReportedResults()
465
reported_results.exit_code = 0
@@ -469,7 +469,7 @@ def umb_to_umb(
469
}
470
return reported_results
471
elif self._mode == "umb":
472
- umb = umbi.umb.read(input_file)
+ umb = umbi.umb.read(input_file, strict=True)
473
umbi.umb.write(umb, output_file)
474
475
0 commit comments