Skip to content

Commit 80bd89a

Browse files
authored
Add missing parenthesis (#799)
1 parent 18eb295 commit 80bd89a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

analytics/testapp/Assets/Firebase/Sample/Analytics/UIHandlerAutomated.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ public override void Start() {
3333
// This test regularly fails on iOS simulator, and there isn't a great way
3434
// to determine if this is on a device or simulator, so just disable on
3535
// GHA iOS and tvOS for now.
36-
#if !FIREBASE_RUNNING_FROM_CI && (UNITY_IOS || UNITY_TVOS)
36+
#if !(FIREBASE_RUNNING_FROM_CI && (UNITY_IOS || UNITY_TVOS))
3737
TestGetSessionId,
38-
#endif // FIREBASE_RUNNING_FROM_CI && (UNITY_IOS || UNITY_TVOS)
38+
#endif // !(FIREBASE_RUNNING_FROM_CI && (UNITY_IOS || UNITY_TVOS))
3939
TestAnalyticsSetConsentDoesNotThrow,
4040
TestInstanceIdChangeAfterReset,
4141
TestResetAnalyticsData,

0 commit comments

Comments
 (0)