Skip to content

Commit

Permalink
Fix log message.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonsimantov committed Jan 24, 2024
1 parent cafc98b commit 6c77b73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testing/test_framework/src/firebase_test_framework.cc
Original file line number Diff line number Diff line change
Expand Up @@ -344,9 +344,9 @@ int64_t FirebaseTest::GetCurrentTimeInSecondsSinceEpoch() {
#else
// On desktop, just return the local time since SendHttpGetRequest is not
// implemented.
int64_t time_in_microseconds = app_framework::GetCurrentTimeInMicroseconds();
int64_t time_in_microseconds = app_framework::GetCurrentTimeInMicroseconds() / 1000000LL;
LogDebug("Got local time: %I64d", time_in_microseconds);
return (time_in_microseconds / 1000000LL);
return (time_in_microseconds);
#endif
}

Expand Down

0 comments on commit 6c77b73

Please sign in to comment.