Skip to content

Commit

Permalink
Fixed minor issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyome22 committed Nov 15, 2024
1 parent 74314d8 commit b320786
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,4 @@ public struct NSAppClient: DependencyClient {
orderFrontStandardAboutPanel: { _ in }
)
}

1 change: 0 additions & 1 deletion ShiftWindowPackages/Sources/Domain/AppDependencies.swift
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
*/

import DataLayer
import Observation
import SwiftUI

public final class AppDependencies: Sendable {
Expand Down
1 change: 0 additions & 1 deletion ShiftWindowPackages/Sources/Domain/AppServices.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
*/

import DataLayer
import Observation
import SwiftUI

public final class AppServices: Sendable {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import XCTest
@testable import Domain

final class LoggerServiceTests: XCTestCase {
func test_bootstrapは一度しか実行されない() async throws {
func test_bootstrapは一度しか実行されない() async {
let count = OSAllocatedUnfairLock(initialState: 0)
let loggingSystemClient = testDependency(of: LoggingSystemClient.self) {
$0.bootstrap = { _ in count.withLock { $0 += 1 } }
Expand Down

0 comments on commit b320786

Please sign in to comment.