Index: FavIconTests/FavIconsTests.swift |
diff --git a/FavIconTests/FavIconsTests.swift b/FavIconTests/FavIconsTests.swift |
index f34edb7a798547f074ae014fbefab7659d8990b6..2d4174e5f442d22fe4535d3276f395fcb1737990 100644 |
--- a/FavIconTests/FavIconsTests.swift |
+++ b/FavIconTests/FavIconsTests.swift |
@@ -15,17 +15,18 @@ |
// limitations under the License. |
// |
+// swiftlint:disable sorted_imports |
+ |
import XCTest |
@testable import FavIcon |
#if os(iOS) |
-import UIKit |
+ import UIKit |
#elseif os(OSX) |
-import Cocoa |
+ import Cocoa |
#endif |
// swiftlint:disable function_body_length |
-// swiftlint:disable line_length |
class FavIconTests: XCTestCase { |
func testScan() { |
@@ -33,7 +34,7 @@ class FavIconTests: XCTestCase { |
performWebRequest(name: "scan") { requestCompleted in |
do { |
- try FavIcon.scan("https://apple.com") { icons, meta in |
+ try FavIcon.scan("https://apple.com") { icons, _ in |
actualIcons = icons |
requestCompleted() |
} |
@@ -314,4 +315,3 @@ private extension XCTestCase { |
} |
// swiftlint:enable function_body_length |
-// swiftlint:enable line_length |