Skip to content

Commit

Permalink
Fixing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
NachoEmbrace committed Dec 10, 2024
1 parent 62c7574 commit a1f013a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ class RemoteConfigFetcherTests: XCTestCase {
let fetcher = RemoteConfigFetcher(options: options, logger: logger)

let expectation = expectation(description: "URL request")
fetcher.fetch { payload in
fetcher.fetch { payload, data in
XCTAssertNotNil(payload)
expectation.fulfill()
}
Expand All @@ -164,7 +164,7 @@ class RemoteConfigFetcherTests: XCTestCase {
let fetcher = RemoteConfigFetcher(options: options, logger: logger)

let expectation = expectation(description: "URL request")
fetcher.fetch { payload in
fetcher.fetch { payload, data in
XCTAssertNil(payload)
expectation.fulfill()
}
Expand Down

0 comments on commit a1f013a

Please sign in to comment.