@@ -25,6 +25,7 @@ class SentryItemTypeSerializationTest {
2525 assertEquals(serialize(SentryItemType .Attachment ), json(" attachment" ))
2626 assertEquals(serialize(SentryItemType .Transaction ), json(" transaction" ))
2727 assertEquals(serialize(SentryItemType .Profile ), json(" profile" ))
28+ assertEquals(serialize(SentryItemType .ProfileChunk ), json(" profile_chunk" ))
2829 assertEquals(serialize(SentryItemType .ClientReport ), json(" client_report" ))
2930 assertEquals(serialize(SentryItemType .ReplayEvent ), json(" replay_event" ))
3031 assertEquals(serialize(SentryItemType .ReplayRecording ), json(" replay_recording" ))
@@ -41,6 +42,7 @@ class SentryItemTypeSerializationTest {
4142 assertEquals(deserialize(json(" attachment" )), SentryItemType .Attachment )
4243 assertEquals(deserialize(json(" transaction" )), SentryItemType .Transaction )
4344 assertEquals(deserialize(json(" profile" )), SentryItemType .Profile )
45+ assertEquals(deserialize(json(" profile_chunk" )), SentryItemType .ProfileChunk )
4446 assertEquals(deserialize(json(" client_report" )), SentryItemType .ClientReport )
4547 assertEquals(deserialize(json(" replay_event" )), SentryItemType .ReplayEvent )
4648 assertEquals(deserialize(json(" replay_recording" )), SentryItemType .ReplayRecording )
0 commit comments