Skip to content

Commit e28d475

Browse files
committed
format fix up and make test win only
1 parent 64384db commit e28d475

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

analytics/integration_test/src/integration_test.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ TEST_F(FirebaseAnalyticsTest, TestSetProperties) {
242242
InitiateOnDeviceConversionMeasurementWithHashedPhoneNumber(hashed_phone);
243243
}
244244

245-
// #if defined(_WIN32)
245+
#if defined(_WIN32)
246246
TEST_F(FirebaseAnalyticsTest, TestSetLogCallback) {
247247
bool log_callback_called = false;
248248
firebase::analytics::SetLogCallback(
@@ -259,7 +259,7 @@ TEST_F(FirebaseAnalyticsTest, TestSetLogCallback) {
259259
EXPECT_TRUE(log_callback_called);
260260
firebase::analytics::SetLogCallback(nullptr);
261261
}
262-
// #endif // defined(_WIN32)
262+
#endif // defined(_WIN32)
263263

264264
TEST_F(FirebaseAnalyticsTest, TestLogEvents) {
265265
// Log an event with no parameters.

app/src/util_android.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ bool LookupFieldIds(JNIEnv* env, jclass clazz,
191191

192192
// Used to populate an array of MethodNameSignature.
193193
#define METHOD_NAME_SIGNATURE_5(id, name, signature, method_type, optional) \
194-
{name, signature, method_type, optional}
194+
{ name, signature, method_type, optional }
195195
#define METHOD_NAME_SIGNATURE_4(id, name, signature, method_type) \
196196
METHOD_NAME_SIGNATURE_5( \
197197
id, name, signature, method_type, \

0 commit comments

Comments
 (0)