Skip to content

Commit

Permalink
Fix intentional failure
Browse files Browse the repository at this point in the history
  • Loading branch information
maddenp-noaa committed Aug 8, 2024
1 parent 6149993 commit 1c8c53c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/uwtools/tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -685,7 +685,7 @@ def test__timedelta_from_str(capsys):
assert cli._timedelta_from_str("01:15:07").total_seconds() == 1 * 3600 + 15 * 60 + 7
with raises(SystemExit):
cli._timedelta_from_str("foo")
assert f"xSpecify leadtime as {cli.LEADTIME_DESC}" in capsys.readouterr().err
assert f"Specify leadtime as {cli.LEADTIME_DESC}" in capsys.readouterr().err


def test__version():
Expand Down

0 comments on commit 1c8c53c

Please sign in to comment.