Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/tests/scheduler_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ TEST_F(SchedulerTest, RepeatCallbackWithDelay) {
int error = abs(actual_delay - delay);
printf("Delay: %dms. Actual delay: %dms. Error: %dms\n", delay, actual_delay,
error);
EXPECT_TRUE(error < 0.1 * internal::kMillisecondsPerSecond);
EXPECT_TRUE(error < 0.2 * internal::kMillisecondsPerSecond);

// Wait for it to repeat 100 times
for (int i = 0; i < 100; ++i) {
Expand Down
2 changes: 1 addition & 1 deletion auth/tests/desktop/test_utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ class AuthStateChangesCounter : public detail::ListenerChangeCounter,
class SleepUponDestruction {
public:
~SleepUponDestruction() {
firebase::internal::Sleep(200);
firebase::internal::Sleep(1000);
}
};

Expand Down