File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
firebase-config/src/test/java/com/google/firebase/remoteconfig/internal Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 35
35
import static com .google .firebase .remoteconfig .RemoteConfigConstants .ResponseFieldKey .ENTRIES ;
36
36
import static com .google .firebase .remoteconfig .RemoteConfigConstants .ResponseFieldKey .EXPERIMENT_DESCRIPTIONS ;
37
37
import static com .google .firebase .remoteconfig .RemoteConfigConstants .ResponseFieldKey .STATE ;
38
+ import static com .google .firebase .remoteconfig .testutil .Assert .assertFalse ;
38
39
import static com .google .firebase .remoteconfig .testutil .Assert .assertThrows ;
39
40
import static org .mockito .MockitoAnnotations .initMocks ;
40
41
@@ -236,7 +237,7 @@ public void fetch_nullFirstOpenTime_fieldNotPresentInRequestBody() throws Except
236
237
237
238
assertThat (requestBody .getJSONObject (ANALYTICS_USER_PROPERTIES ).toString ())
238
239
.isEqualTo (new JSONObject (customUserProperties ).toString ());
239
- assertThat (requestBody .isNull (FIRST_OPEN_TIME ));
240
+ assertFalse (requestBody .has (FIRST_OPEN_TIME ));
240
241
}
241
242
242
243
@ Test
You can’t perform that action at this time.
0 commit comments