diff --git a/tests/commit-queue-playground/cli/test_main.py b/tests/commit-queue-playground/cli/test_main.py index 6b5f10ad..3f4d434d 100644 --- a/tests/commit-queue-playground/cli/test_main.py +++ b/tests/commit-queue-playground/cli/test_main.py @@ -2,3 +2,7 @@ def test_that_passes(): assert 1 == 1 assert 12 == 12 + + +def test_that_fails(): + assert 1 == 2, "This test intentionally fails for testing purposes"