Skip to content
This repository has been archived by the owner on Sep 5, 2023. It is now read-only.

Commit

Permalink
fix(swiftlint): unavailable_function
Browse files Browse the repository at this point in the history
  • Loading branch information
migueltorcha committed Sep 30, 2022
1 parent c9ce2af commit 4029284
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import Harmony

public extension Interactor {

// swiftlint:disable unavailable_function
class MockDeleteByQuery: DeleteByQuery {
private let expectedResult: Result<Void, Error>

Expand Down
2 changes: 1 addition & 1 deletion Sources/HarmonyTesting/Interactor/MockInteractorGet.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import Harmony

public extension Interactor {

// swiftlint:disable unavailable_function
class MockGetByQuery<T>: GetByQuery<T> {
private let expectedResult: Result<T, Error>

Expand Down
2 changes: 1 addition & 1 deletion Sources/HarmonyTesting/Interactor/MockInteractorPut.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import Harmony

public extension Interactor {

// swiftlint:disable unavailable_function
class MockPutByQuery<T>: PutByQuery<T> {
private let expectedResult: Result<T, Error>

Expand Down

0 comments on commit 4029284

Please sign in to comment.