@@ -91,13 +91,16 @@ def __len__(self) -> int:
9191 pytest .param (MappingProxyType ({'a' : 1 , 'b' : 2 , 'c' : 3 }), id = "MappingProxyType" ),
9292 pytest .param (ChainMap ({'a' : 1 }, {'b' : 2 }, {'c' : 3 }), id = "ChainMap" ),
9393 pytest .param (
94- OrderedDict ({'a' : MappingProxyType ({'a' : 1 })}), id = "Nested_OrderedDict_MappingProxyType"
94+ OrderedDict ({'a' : MappingProxyType ({'a' : 1 })}),
95+ id = "Nested_OrderedDict_MappingProxyType" ,
9596 ),
9697 pytest .param (
97- OrderedDict ({'a' : CustomSequence ([1 , 2 , 3 ])}), id = "Nested_OrderedDict_CustomSequence"
98+ OrderedDict ({'a' : CustomSequence ([1 , 2 , 3 ])}),
99+ id = "Nested_OrderedDict_CustomSequence" ,
98100 ),
99101 pytest .param (
100- CustomSequence ([MappingProxyType ({'a' : 1 })]), id = "Nested_CustomSequence_MappingProxyType"
102+ CustomSequence ([MappingProxyType ({'a' : 1 })]),
103+ id = "Nested_CustomSequence_MappingProxyType" ,
101104 ),
102105 pytest .param (CustomMapping ({'a' : Count (a = 1 , b = 2 , c = 3 )}), id = "Nested_CustomMapping_NamedTuple" ),
103106 pytest .param (toml .loads (some_toml )["section" ]["table" ], id = "Toml_InlineTableDict" ),
0 commit comments