Skip to content

Commit a4a3bb1

Browse files
committed
fix formating and name of skip
1 parent e073e23 commit a4a3bb1

2 files changed

Lines changed: 7 additions & 6 deletions

File tree

analytics/integration_test/src/integration_test.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ TEST_F(FirebaseAnalyticsTest, TestSetProperties) {
248248
// The windows analytics DLL enables users to // set a callback function that is
249249
// triggered when the underlying DLL logs something.
250250
TEST_F(FirebaseAnalyticsTest, TestSetLogCallback) {
251-
SKIP_TEST_ON_WINDOWS_X86;
251+
SKIP_TEST_ON_WINDOWS_32BIT;
252252

253253
std::promise<void> finishedPromise;
254254
std::future<void> finished = finishedPromise.get_future();

testing/test_framework/src/firebase_test_framework.h

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -138,11 +138,12 @@ namespace firebase_test_framework {
138138
#if !defined(_WIN64)
139139
// _WIN64 is defined for 64-bit targets (e.g., x64, 64-bit ARM).
140140
// Its absence on a Windows build indicates a 32-bit target.
141-
#define SKIP_TEST_ON_WINDOWS_32BIT \
142-
{ \
143-
app_framework::LogInfo("Skipping %s on 32-bit Windows.", test_info_->name()); \
144-
GTEST_SKIP(); \
145-
return; \
141+
#define SKIP_TEST_ON_WINDOWS_32BIT \
142+
{ \
143+
app_framework::LogInfo("Skipping %s on 32-bit Windows.", \
144+
test_info_->name()); \
145+
GTEST_SKIP(); \
146+
return; \
146147
}
147148
#else
148149
#define SKIP_TEST_ON_WINDOWS_32BIT ((void)0)

0 commit comments

Comments
 (0)