I'm seeing some weird bug using `Mapper.notNullabl...
# serialization
r
I'm seeing some weird bug using
Mapper.notNullable()
with int backed enums. When I map this object I am there is no
enumListProp
key in the map it returns
This test fails
Copy code
@Test
    fun testMappingListOfEnums() {
        val test = TestObj()
        test.listEnumProp = listOf(TestEnum.BLUE, TestEnum.RED)

        val map = Mapper.mapNullable(TestObj.serializer(), test)
        val subject = map["enumListProp"]

        assertNotNull(subject)
    }
message has been deleted