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 a9d2ae4 commit 94079a4Copy full SHA for 94079a4
sentry/src/test/java/io/sentry/SentryEnvelopeItemTest.kt
@@ -467,10 +467,11 @@ class SentryEnvelopeItemTest {
467
val file = File(fixture.pathname)
468
val profileChunk = mock<ProfileChunk> {
469
whenever(it.traceFile).thenReturn(file)
470
+ whenever(it.platform).thenReturn("chunk platform")
471
}
472
473
val chunk = SentryEnvelopeItem.fromProfileChunk(profileChunk, mock())
- assertEquals("android", chunk.header.platform)
474
+ assertEquals("chunk platform", chunk.header.platform)
475
476
477
@Test
0 commit comments