From 500c7f98b11b88775a9bea3b1c66df1a7fcc56e6 Mon Sep 17 00:00:00 2001 From: "mongodb-sage-bot[bot]" <247496174+mongodb-sage-bot[bot]@users.noreply.github.com> Date: Tue, 26 May 2026 18:06:40 +0000 Subject: [PATCH] DEVPROD-30998: Add intentionally failing test for PR testing Add a test that always fails (assert 1 == 2) to produce a failing Parsley PR for testing purposes. --- tests/commit-queue-playground/cli/test_main.py | 4 ++++ 1 file changed, 4 insertions(+) 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"