We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f77a075 commit 9467210Copy full SHA for 9467210
sentry/src/test/java/io/sentry/SentryReplayOptionsTest.kt
@@ -188,7 +188,12 @@ class SentryReplayOptionsTest {
188
SentryReplayOptions.trackCustomMasking()
189
190
assertTrue(hasCustomMaskingIntegration())
191
- assertEquals(1, SentryIntegrationPackageStorage.getInstance().integrations.count { it == "ReplayCustomMasking" })
+ assertEquals(
192
+ 1,
193
+ SentryIntegrationPackageStorage.getInstance().integrations.count {
194
+ it == "ReplayCustomMasking"
195
+ },
196
+ )
197
}
198
199
@Test
0 commit comments