Skip to content

Commit

Permalink
Test change
Browse files Browse the repository at this point in the history
  • Loading branch information
hmlongco committed Dec 31, 2024
1 parent 6b28e66 commit f2679ac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Tests/FactoryTests/FactoryIsolationTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ extension Container {

// Factory with MainActor-based class and initializer
@MainActor
private final class SomeMainActorType: Sendable {
private final class SomeMainActorType {
init() {}
}

Expand All @@ -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() {}
}
Expand Down

0 comments on commit f2679ac

Please sign in to comment.