You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mapSuite only exercised Map[String, V] (the native AttributeValue.Map
path). Any non-String key type (Map[Int, V] here) falls back to a
completely different Sequence-of-tuple2 encoding (isNativeMap check),
which had zero coverage: encode shape, round-trip, empty map, and the
three decode-error branches (non-List value, malformed 2-tuple entry,
undecodable key).
Coverage: 85.75% -> 86.57%.
0 commit comments