Skip to content

Commit 0b250aa

Browse files
committed
fixed test
1 parent 0a51080 commit 0b250aa

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

sentry-android-core/src/test/java/io/sentry/android/core/SentryUserFeedbackDialogTest.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import io.sentry.ReplayController
1111
import io.sentry.Sentry
1212
import io.sentry.SentryFeedbackOptions
1313
import io.sentry.SentryLevel
14+
import io.sentry.protocol.SentryId
1415
import kotlin.test.AfterTest
1516
import kotlin.test.BeforeTest
1617
import kotlin.test.Test
@@ -53,10 +54,11 @@ class SentryUserFeedbackDialogTest {
5354
}
5455

5556
fun getSut(
57+
associatedEventId: SentryId? = null,
5658
configuration: SentryUserFeedbackDialog.OptionsConfiguration? = null,
5759
configurator: SentryFeedbackOptions.OptionsConfigurator? = null,
5860
): SentryUserFeedbackDialog =
59-
SentryUserFeedbackDialog(application, 0, configuration, configurator)
61+
SentryUserFeedbackDialog(application, 0, associatedEventId, configuration, configurator)
6062
}
6163

6264
private val fixture = Fixture()

0 commit comments

Comments
 (0)