Skip to content

Commit 0c6c9b8

Browse files
committed
Fix lint warning on line length.
1 parent 3b29a35 commit 0c6c9b8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

WooCommerce/WooCommerceTests/POS/Mocks/MockPOSCatalogSettingsService.swift

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
@testable import Yosemite
22

33
final class MockPOSCatalogSettingsService: POSCatalogSettingsServiceProtocol {
4-
var catalogInfoResult: Result<POSCatalogInfo, Error> = .success(POSCatalogInfo(productCount: 0, variationCount: 0, lastFullSyncDate: nil, lastIncrementalSyncDate: nil))
4+
var catalogInfoResult: Result<POSCatalogInfo, Error> = .success(
5+
.init(productCount: 0, variationCount: 0, lastFullSyncDate: nil, lastIncrementalSyncDate: nil)
6+
)
57
var shouldDelayResponse = false
68

79
func loadCatalogInfo(for siteID: Int64) async throws -> POSCatalogInfo {

0 commit comments

Comments
 (0)