Skip to content

Commit baf1826

Browse files
committed
Remove unused dependencies and reorder imports.
1 parent ab8bf03 commit baf1826

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

WooCommerce/WooCommerceTests/Authentication/StoreCreationCoordinatorTests.swift

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,11 @@ import XCTest
33
@testable import WooCommerce
44

55
final class StoreCreationCoordinatorTests: XCTestCase {
6-
private var stores: MockStoresManager!
7-
private var analyticsProvider: MockAnalyticsProvider!
8-
private var analytics: WooAnalytics!
96
private var navigationController: UINavigationController!
107
private let window = UIWindow(frame: UIScreen.main.bounds)
118

129
override func setUp() {
1310
super.setUp()
14-
stores = MockStoresManager(sessionManager: SessionManager.makeForTesting())
15-
analyticsProvider = MockAnalyticsProvider()
16-
analytics = WooAnalytics(analyticsProvider: analyticsProvider)
1711

1812
window.makeKeyAndVisible()
1913
navigationController = .init()
@@ -24,9 +18,7 @@ final class StoreCreationCoordinatorTests: XCTestCase {
2418
navigationController = nil
2519
window.resignKey()
2620
window.rootViewController = nil
27-
analytics = nil
28-
analyticsProvider = nil
29-
stores = nil
21+
3022
super.tearDown()
3123
}
3224

WooCommerce/WooCommerceTests/Authentication/StorePickerCoordinatorTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import WordPressAuthenticator
21
import TestKit
2+
import WordPressAuthenticator
33
import XCTest
44
@testable import WooCommerce
55

0 commit comments

Comments
 (0)