-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: lint-issues for last test commit
- Loading branch information
1 parent
f0e8e32
commit 2594479
Showing
8 changed files
with
17 additions
and
15 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
Tests/ContributeWordPressTests/Helpers/Error/AssetDownloaderError.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import Foundation | ||
|
||
enum AssetDownloaderError: EquatableError { | ||
internal enum AssetDownloaderError: EquatableError { | ||
case unreachableDestination | ||
} |
4 changes: 2 additions & 2 deletions
4
Tests/ContributeWordPressTests/Helpers/Extension/FakeData/AssetImport+Fake.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Tests/ContributeWordPressTests/Helpers/Extension/Make/AssetImport+Make.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
Tests/ContributeWordPressTests/Helpers/Spy/AssetImportFactorySpy.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
Tests/ContributeWordPressTests/Helpers/Stub/AssetImportFactoryStub.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
import Foundation | ||
import ContributeWordPress | ||
import Foundation | ||
|
||
internal struct AssetImportFactoryStub { | ||
internal func extractAssetImports( | ||
from site: WordPressSite, | ||
using importSettings: ProcessorSettings | ||
from _: WordPressSite, | ||
using _: ProcessorSettings | ||
) -> [AssetImport] { | ||
return [] | ||
[] | ||
} | ||
} |
1 change: 1 addition & 0 deletions
1
Tests/ContributeWordPressTests/Processing/MarkdownProcessorTests.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
// swiftlint:disable file_length | ||
@testable import ContributeWordPress | ||
import XCTest | ||
|
||
|