From 5a2b6e3f6b89192646d62fb8a7f713c1f78e92a7 Mon Sep 17 00:00:00 2001 From: Devmate Bot Date: Wed, 29 Oct 2025 18:08:50 -0700 Subject: [PATCH] Fix for T243146224: Your diff, D84930098, broke one test Reviewed By: dulinriley Differential Revision: D85727437 --- python/tests/test_actor_error.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/python/tests/test_actor_error.py b/python/tests/test_actor_error.py index b7325a15b..57860082d 100644 --- a/python/tests/test_actor_error.py +++ b/python/tests/test_actor_error.py @@ -750,7 +750,9 @@ async def test_slice_supervision() -> None: slice_3 = error_mesh.slice(gpus=3) # Trigger supervision error on gpus=3 - with pytest.raises(SupervisionError, match="did not handle supervision event"): + with pytest.raises( + SupervisionError, match="exited because of the following reason" + ): await slice_3.fail_with_supervision_error.call() match = (