@@ -122,23 +122,23 @@ def test_parse_with_map_merge_into_none(self):
122122 @parameterized .expand ([
123123 ({}, {"$$$" : []}, {"$$$" : []}),
124124 ({"$$$" : []}, {}, {"$$$" : []}),
125- ({"$$$" : []}, {"$$$" : "sh-2" }, {"$$$" : [ "sh-2" ] }),
125+ ({"$$$" : []}, {"$$$" : "sh-2" }, {"$$$" : "sh-2" }),
126126 ({"$$$" : "sh-2" }, {"$$$" : []}, {"$$$" : []}),
127- ({}, {"$$$" : "sh" }, {"$$$" : [ "sh" ] }),
128- ({"$$$" : "sh" }, {}, {"$$$" : [ "sh" ] }),
129- ({"$$$" : "sh-1" }, {"$$$" : "sh-2" }, {"$$$" : [ "sh-2" ] }),
130- ({"$$$" : ["sh-1" ]}, {"$$$" : "sh-2" }, {"$$$" : [ "sh-2" ] }),
127+ ({}, {"$$$" : "sh" }, {"$$$" : "sh" }),
128+ ({"$$$" : "sh" }, {}, {"$$$" : "sh" }),
129+ ({"$$$" : "sh-1" }, {"$$$" : "sh-2" }, {"$$$" : "sh-2" }),
130+ ({"$$$" : ["sh-1" ]}, {"$$$" : "sh-2" }, {"$$$" : "sh-2" }),
131131 ({"$$$" : "sh-1" }, {"$$$" : ["sh-2" ]}, {"$$$" : ["sh-2" ]}),
132132 ({"$$$" : "sh-1" }, {"$$$" : ["sh-2" , "sh-3" ]}, {"$$$" : ["sh-2" , "sh-3" ]}),
133133 ({"$$$" : ["sh-1" ]}, {"$$$" : ["sh-2" , "sh-3" ]}, {"$$$" : ["sh-2" , "sh-3" ]}),
134134 ({"$$$" : ["sh-1" , "sh-2" ]}, {"$$$" : ["sh-3" , "sh-4" ]}, {"$$$" : ["sh-3" , "sh-4" ]}),
135135 ({}, {"$$$" : ["sh-3" , "sh 4" ]}, {"$$$" : ["sh-3" , "sh 4" ]}),
136- ({"$$$" : "sleep infinity" }, {"$$$" : "sh" }, {"$$$" : [ "sh" ] }),
137- ({"$$$" : "sh" }, {"$$$" : "sleep infinity" }, {"$$$" : [ "sleep" , " infinity"] }),
136+ ({"$$$" : "sleep infinity" }, {"$$$" : "sh" }, {"$$$" : "sh" }),
137+ ({"$$$" : "sh" }, {"$$$" : "sleep infinity" }, {"$$$" : "sleep infinity" }),
138138 (
139139 {},
140140 {"$$$" : "bash -c 'sleep infinity'" },
141- {"$$$" : [ "bash" , "-c" , " sleep infinity" ] },
141+ {"$$$" : "bash -c ' sleep infinity'" },
142142 ),
143143 ])
144144 def test_parse_compose_file_when_multiple_composes_keys_command_entrypoint (
0 commit comments