Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: FavIconTests/FavIconsTests.swift

Issue 29664569: Favicon: Issue 6245 - SwiftLinted project files (Closed)
Patch Set: Created Jan. 12, 2018, 11:04 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « FavIcon/Utils.swift ('k') | FavIconTests/HTMLDocumentTests.swift » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « FavIcon/Utils.swift ('k') | FavIconTests/HTMLDocumentTests.swift » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld