We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd4b83e commit 563a9f6Copy full SHA for 563a9f6
firebase-config/src/test/java/com/google/firebase/remoteconfig/FirebaseRemoteConfigTest.java
@@ -1577,7 +1577,7 @@ public void realtime_updatesBackoffMetadataWithProvidedRetryInterval() throws Ex
1577
long backoffDurationInMillis = expectedRetryIntervalInSeconds * 1000L;
1578
Date expectedBackoffEndTime = new Date(currentTime.getTime() + backoffDurationInMillis);
1579
return Math.abs(argument.getTime() - expectedBackoffEndTime.getTime())
1580
- <= TimeUnit.SECONDS.toSeconds(1);
+ <= TimeUnit.SECONDS.toMillis(1);
1581
};
1582
1583
verify(sharedPrefsClient, times(1))
0 commit comments