Skip to content

Commit 4bc9067

Browse files
committed
fix: failing tests after change to authData
1 parent aba063d commit 4bc9067

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

parse/src/test/java/com/parse/ParseUserTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -959,7 +959,7 @@ public void testSaveAsyncWithLazyAndCurrentUser() throws Exception {
959959
ParseTaskUtils.wait(partialMockUser.saveAsync("sessionToken", Task.<Void>forResult(null)));
960960

961961
// Make sure we clean authData
962-
assertFalse(partialMockUser.getAuthData().containsKey("facebook"));
962+
assertFalse(partialMockUser.getState().authData().containsKey("facebook"));
963963
// Make sure we save new currentUser
964964
verify(currentUserController, times(1)).setAsync(partialMockUser);
965965
}

0 commit comments

Comments
 (0)