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 eaea0dd commit f1b1540Copy full SHA for f1b1540
sentry/src/test/java/io/sentry/SentryTracerTest.kt
@@ -1170,8 +1170,8 @@ class SentryTracerTest {
1170
}
1171
1172
@Test
1173
- fun `when transaction is created, but not profiled, compositePerformanceCollector is started anyway`() {
1174
- val transaction = fixture.getSut()
+ fun `when transaction is created and sampled, but not profiled, compositePerformanceCollector is started anyway`() {
+ val transaction = fixture.getSut(samplingDecision = TracesSamplingDecision(true))
1175
verify(fixture.compositePerformanceCollector).start(anyOrNull<ITransaction>())
1176
1177
0 commit comments