Skip to content

Commit bb3c48c

Browse files
committed
Format code.
1 parent 6077266 commit bb3c48c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

installations/integration_test/src/integration_test.cc

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,8 @@ TEST_F(FirebaseInstallationsTest, TestGettingTokenTwiceMatches) {
280280
TEST_F(FirebaseInstallationsTest, TestDeleteGivesNewTokenNextTime) {
281281
if (!RunFlakyBlock(
282282
[](firebase::installations::Installations* installations) {
283-
firebase::Future<std::string> token = installations->GetToken(false);
283+
firebase::Future<std::string> token =
284+
installations->GetToken(false);
284285
WaitForCompletionAnyResult(token, "GetToken");
285286
if (token.error() != 0) {
286287
LogError("GetToken returned error %d: %s", token.error(),
@@ -317,7 +318,8 @@ TEST_F(FirebaseInstallationsTest, TestDeleteGivesNewTokenNextTime) {
317318
// Desktop is a stub and returns the same token, but on mobile it
318319
// should return a new token.
319320
if (*token.result() == first_token) {
320-
LogError("Tokens match (should be different): %s", first_token.c_str());
321+
LogError("Tokens match (should be different): %s",
322+
first_token.c_str());
321323
return false;
322324
}
323325
#endif // defined(__ANDROID__) || (defined(TARGET_OS_IPHONE) &&

0 commit comments

Comments
 (0)