Skip to content

Commit 43be7bf

Browse files
committed
Merge branch 'dev' into yuki/company-with-robert-PR-test
# Conflicts: # common
2 parents d2f0162 + ce7c223 commit 43be7bf

5 files changed

Lines changed: 4 additions & 3 deletions

File tree

.gitmodules

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
[submodule "microsoft-authentication-library-common-for-android"]
22
path = common
33
url = https://github.com/AzureAD/microsoft-authentication-library-common-for-android.git
4-
branch = yuki/key-vault-test

changelog

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ vNext
66
Version 5.4.2
77
---------
88
- [PATCH] Update common @17.6.1
9+
- [MINOR] Fix UserAttributesBuilder being a singleton bug (#2145)
910

1011
Version 5.4.0
1112
----------

msal/src/test/java/com/microsoft/identity/client/e2e/tests/mocked/AcquireTokenMockTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ public void testAcquireTokenFailureUnsuccessfulTokenResult() {
200200
.withLoginHint(username)
201201
.withScopes(Arrays.asList(mScopes))
202202
.fromAuthority(getAuthority())
203-
.withCallback(AcquireTokenTestHelper.failureInteractiveCallback(ErrorCodes.UNKNOWN_ERROR_CODE))
203+
.withCallback(AcquireTokenTestHelper.failureInteractiveCallback(ErrorCodes.NULL_POINTER_ERROR_CDOE))
204204
.build();
205205

206206
mApplication.acquireToken(parameters);

msal/src/test/java/com/microsoft/identity/client/e2e/utils/ErrorCodes.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,5 @@ public class ErrorCodes {
2929
public static final String NO_ACCOUNT_FOUND_ERROR_CODE = "no_account_found";
3030
public static final String NO_CURRENT_ACCOUNT_ERROR_CODE = "no_current_account";
3131
public static final String INTERNAL_SERVER_ERROR_CODE = "internal_server_error";
32+
public static final String NULL_POINTER_ERROR_CDOE = "null_pointer_error";
3233
}

0 commit comments

Comments
 (0)