File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed
IdentityCore/tests/automation/ui_tests_lib Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -436,7 +436,10 @@ - (NSArray *)loadTestAccountRequest:(MSIDAutomationBaseApiRequest *)accountReque
436436 XCTAssertTrue (results.count >= 1 );
437437
438438 XCTestExpectation *passwordLoadExpecation = [self expectationWithDescription: @" Get password" ];
439- passwordLoadExpecation.expectedFulfillmentCount = results.count ;
439+ if (results && results.count > 0 )
440+ {
441+ passwordLoadExpecation.expectedFulfillmentCount = results.count ;
442+ }
440443
441444 for (MSIDTestAutomationAccount *account in results)
442445 {
Original file line number Diff line number Diff line change 1+ Version 1.7.43
2+ * Support web_page_uri #1440
3+ * Save error received from ESTS, and return it to the client on silent broker calls (#1438)
4+ * XPC CommonCore Minor change to support broker XPC changes (#1436)
5+ * Assign completion block before perform request (#1434)
6+
17Version 1.7.42
28* Support extra query parameters on signout (#1243)
39* Wrap ASAuthorizationProviderExtensionAuthorizationRequest methods (#1427)
You can’t perform that action at this time.
0 commit comments