From f2679ac998718e54e4bab899e69a17d261575863 Mon Sep 17 00:00:00 2001 From: Michael Long Date: Tue, 31 Dec 2024 11:45:01 -0600 Subject: [PATCH] Test change --- Tests/FactoryTests/FactoryIsolationTests.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Tests/FactoryTests/FactoryIsolationTests.swift b/Tests/FactoryTests/FactoryIsolationTests.swift index dd2f0d44..e56d3354 100644 --- a/Tests/FactoryTests/FactoryIsolationTests.swift +++ b/Tests/FactoryTests/FactoryIsolationTests.swift @@ -13,7 +13,7 @@ extension Container { // Factory with MainActor-based class and initializer @MainActor -private final class SomeMainActorType: Sendable { +private final class SomeMainActorType { init() {} } @@ -24,9 +24,9 @@ extension Container { } } -// Factory with MainActor-based class and nonioslated initializer +// Factory with MainActor-based class and nonisolated initializer @MainActor -private final class NonIsolatedMainActorType: Sendable { +private final class NonIsolatedMainActorType { nonisolated init() {} func test() {} }