Skip to content

Commit

Permalink
fix: failing tests after change to authData
Browse files Browse the repository at this point in the history
  • Loading branch information
shlusiak committed Nov 10, 2021
1 parent aba063d commit 4bc9067
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parse/src/test/java/com/parse/ParseUserTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -959,7 +959,7 @@ public void testSaveAsyncWithLazyAndCurrentUser() throws Exception {
ParseTaskUtils.wait(partialMockUser.saveAsync("sessionToken", Task.<Void>forResult(null)));

// Make sure we clean authData
assertFalse(partialMockUser.getAuthData().containsKey("facebook"));
assertFalse(partialMockUser.getState().authData().containsKey("facebook"));
// Make sure we save new currentUser
verify(currentUserController, times(1)).setAsync(partialMockUser);
}
Expand Down

0 comments on commit 4bc9067

Please sign in to comment.