Skip to content

Commit 78d8224

Browse files
authored
fix typo
1 parent f097d24 commit 78d8224

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/Distributed/Runtime/distributed_actor_init_local.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ distributed actor PickATransport1 {
2525
}
2626

2727
distributed actor PickATransport2 {
28-
init(other: Int, thesystem: FakeActorSystem) async {
29-
self.actorSystem = thesystem
28+
init(other: Int, theSystem: FakeActorSystem) async {
29+
self.actorSystem = theSystem
3030
}
3131
}
3232

@@ -253,7 +253,7 @@ func test() async {
253253
// CHECK-NOT: ready
254254
// CHECK: resign id:ActorAddress(address: "[[ID5]]")
255255

256-
test.append(await PickATransport2(other: 1, thesystem: system))
256+
test.append(await PickATransport2(other: 1, theSystem: system))
257257
// CHECK: assign type:PickATransport2, id:ActorAddress(address: "[[ID6:.*]]")
258258
// CHECK: ready actor:main.PickATransport2, id:ActorAddress(address: "[[ID6]]")
259259

0 commit comments

Comments
 (0)