Skip to content

Commit 61d3de2

Browse files
committed
fix debugId/codeId look-up and checks in TombstoneIntegrationTest
1 parent f9c9e38 commit 61d3de2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@ class TombstoneIntegrationTest : ApplicationExitIntegrationTestBase<TombstoneHin
6767
assertTrue(crashedThread.isCrashed!!)
6868

6969
val image =
70-
event.debugMeta?.images?.find { image -> image.debugId == "f60b4b74005f33fb3ef3b98aa4546008" }
70+
event.debugMeta?.images?.find { image -> image.codeId == "f60b4b74005f33fb3ef3b98aa4546008" }
71+
assertEquals("744b0bf6-5f00-fb33-3ef3-b98aa4546008", image!!.debugId)
7172
assertNotNull(image)
7273
assertEquals("/system/lib64/libcompiler_rt.so", image.codeFile)
7374
assertEquals("0x764c32a000", image.imageAddr)

0 commit comments

Comments
 (0)