Skip to content

Commit 45ca749

Browse files
committed
✅ Tweak test
1 parent 5c0b4a6 commit 45ca749

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def hello(name: User = User.rick) -> None:
2222
def test_enum_choice() -> None:
2323
# This test is only for coverage of the new custom TyperChoice class
2424
result = runner.invoke(app, ["--name", "morty"], catch_exceptions=False)
25-
# assert result.exit_code == 0
25+
assert result.exit_code == 0
2626
assert "Hello Morty!" in result.output
2727

2828
result = runner.invoke(app, ["--name", "Rick"])

0 commit comments

Comments
 (0)