From 5a5718e4782ecafac739ce9161d7bf6b0270c721 Mon Sep 17 00:00:00 2001 From: Tim Kientzle Date: Tue, 9 Jul 2024 13:31:49 -0700 Subject: [PATCH] Update executor test The test previously checked for a message that is no longer emitted. Drop it. --- .../distributed_actor_custom_executor_availability.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Distributed/Runtime/distributed_actor_custom_executor_availability.swift b/test/Distributed/Runtime/distributed_actor_custom_executor_availability.swift index df915a14f0fbb..50e8c96a7004f 100644 --- a/test/Distributed/Runtime/distributed_actor_custom_executor_availability.swift +++ b/test/Distributed/Runtime/distributed_actor_custom_executor_availability.swift @@ -29,7 +29,7 @@ import Distributed let system = LocalTestingDistributedActorSystem() tests.test("5.7 actor, no availability executor property => no custom executor") { - expectCrashLater(withMessage: "Incorrect actor executor assumption; Expected MainActor executor") + expectCrashLater() try! await FiveSevenActor_NothingExecutor(actorSystem: system).test(x: 42) } @@ -38,7 +38,7 @@ import Distributed } tests.test("5.7 actor, 5.9 executor property => no custom executor") { - expectCrashLater(withMessage: "Incorrect actor executor assumption; Expected MainActor executor") + expectCrashLater() try! await FiveSevenActor_FiveNineExecutor(actorSystem: system).test(x: 42) }