Skip to content

Commit 4470ed7

Browse files
committed
Update executor test
The test previously checked for a message that is no longer emitted. Drop it.
1 parent 48eb993 commit 4470ed7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/Distributed/Runtime/distributed_actor_custom_executor_availability.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import Distributed
2929
let system = LocalTestingDistributedActorSystem()
3030

3131
tests.test("5.7 actor, no availability executor property => no custom executor") {
32-
expectCrashLater(withMessage: "Incorrect actor executor assumption; Expected MainActor executor")
32+
expectCrashLater()
3333
try! await FiveSevenActor_NothingExecutor(actorSystem: system).test(x: 42)
3434
}
3535

@@ -38,7 +38,7 @@ import Distributed
3838
}
3939

4040
tests.test("5.7 actor, 5.9 executor property => no custom executor") {
41-
expectCrashLater(withMessage: "Incorrect actor executor assumption; Expected MainActor executor")
41+
expectCrashLater()
4242
try! await FiveSevenActor_FiveNineExecutor(actorSystem: system).test(x: 42)
4343
}
4444

0 commit comments

Comments
 (0)