File tree Expand file tree Collapse file tree
sentry-android-core/src/test/java/io/sentry/android/core
sentry/src/test/java/io/sentry Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -132,11 +132,7 @@ class TombstoneIntegrationTest : ApplicationExitIntegrationTestBase<TombstoneHin
132132
133133 integration.register(fixture.scopes, fixture.options)
134134
135- verify(fixture.scopes)
136- .captureEvent(
137- any(),
138- argThat<Hint > { this .tombstone == null },
139- )
135+ verify(fixture.scopes).captureEvent(any(), argThat<Hint > { this .tombstone == null })
140136 }
141137
142138 @Test
Original file line number Diff line number Diff line change @@ -2136,9 +2136,7 @@ class SentryClientTest {
21362136 .send(
21372137 check { envelope ->
21382138 val tombstone = envelope.items.last()
2139- assertNotNull(tombstone) {
2140- assertEquals(attachment.filename, tombstone.header.fileName)
2141- }
2139+ assertNotNull(tombstone) { assertEquals(attachment.filename, tombstone.header.fileName) }
21422140 },
21432141 anyOrNull(),
21442142 )
You can’t perform that action at this time.
0 commit comments