Skip to content

Commit b931705

Browse files
authored
Merge pull request #1445 from AzureAD/veena/merge_rel_1.7.43_dev
merge release 1.7.43 to dev
2 parents 03a24f4 + 9eadce5 commit b931705

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

IdentityCore/tests/automation/ui_tests_lib/MSIDBaseUITest.m

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff 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
{

changelog.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
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+
17
Version 1.7.42
28
* Support extra query parameters on signout (#1243)
39
* Wrap ASAuthorizationProviderExtensionAuthorizationRequest methods (#1427)

0 commit comments

Comments
 (0)