File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -345,7 +345,11 @@ - (void)testSuccessfulQueryAPIResponse {
345
345
headerFields: @{}];
346
346
NSData *responseData = [@" query failed" dataUsingEncoding: NSUTF8StringEncoding];
347
347
348
- [client.network handleQueryAPIResponse: response andData: responseData andQuery: nil andProjectID: kDefaultProjectID andError: nil ];
348
+ [client.network handleQueryAPIResponse: response
349
+ andData: responseData
350
+ andQuery: nil
351
+ andProjectID: kDefaultProjectID
352
+ andError: nil ];
349
353
350
354
// test that there are no entries in the query database
351
355
XCTAssertEqual ([KIODBStore.sharedInstance getTotalQueryCountWithProjectID: kDefaultProjectID ],
@@ -371,7 +375,11 @@ - (void)testFailedQueryAPIResponse {
371
375
@" event_collection" : @" collection"
372
376
}];
373
377
374
- [client.network handleQueryAPIResponse: response andData: responseData andQuery: query andProjectID: kDefaultProjectID andError: nil ];
378
+ [client.network handleQueryAPIResponse: response
379
+ andData: responseData
380
+ andQuery: query
381
+ andProjectID: kDefaultProjectID
382
+ andError: nil ];
375
383
376
384
NSUInteger numberOfQueries = [KIODBStore.sharedInstance getTotalQueryCountWithProjectID: kDefaultProjectID ];
377
385
You can’t perform that action at this time.
0 commit comments