Skip to content

Commit 157e45a

Browse files
committed
Fix swift lint issue
1 parent f55998c commit 157e45a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Tests/FeaturevisorSDKTests/InstanceTests.swift

+3-3
Original file line numberDiff line numberDiff line change
@@ -1150,7 +1150,7 @@ class FeaturevisorInstanceTests: XCTestCase {
11501150
let expectation = expectation(description: "datafile_error_response_expectation")
11511151
var wasDatafileContentFetchErrorThrown = false
11521152
var errorThrownDetails: String?
1153-
1153+
11541154
var options = InstanceOptions.default
11551155
options.logger = createLogger { level, message, details in
11561156
guard case .error = level else {
@@ -1166,7 +1166,7 @@ class FeaturevisorInstanceTests: XCTestCase {
11661166
}
11671167
options.datafileUrl = "https://featurevisor.datafilecontent.com"
11681168
options.handleDatafileFetch = { _ in
1169-
.failure(FeaturevisorError.unparseableJSON(data: nil, errorMessage: "Error :("))
1169+
.failure(FeaturevisorError.unparseableJSON(data: nil, errorMessage: "Error :("))
11701170
}
11711171
options.datafile = DatafileContent(
11721172
schemaVersion: "1",
@@ -1179,7 +1179,7 @@ class FeaturevisorInstanceTests: XCTestCase {
11791179
// WHEN
11801180
let sdk = try! createInstance(options: options)
11811181
waitForExpectations(timeout: 1)
1182-
1182+
11831183
// THEN
11841184
XCTAssertFalse(sdk.isReady())
11851185
XCTAssertTrue(wasDatafileContentFetchErrorThrown)

0 commit comments

Comments
 (0)