From 084dc61bbf68e861ae3604b2718e342118ee9555 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Wed, 22 Jan 2025 21:16:30 +0200 Subject: [PATCH] TEMP force a failure --- Lib/test/test_exception_variations.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/test/test_exception_variations.py b/Lib/test/test_exception_variations.py index a83a41d2975db66..906d75f54644333 100644 --- a/Lib/test/test_exception_variations.py +++ b/Lib/test/test_exception_variations.py @@ -19,6 +19,7 @@ def test_try_except_else_finally(self): self.assertTrue(hit_except) self.assertTrue(hit_finally) self.assertFalse(hit_else) + self.assertEqual(1, 2) def test_try_except_else_finally_no_exception(self): hit_except = False