@@ -172,8 +172,11 @@ main() {
172172 test ('outputs from previous full builds shouldn\' t be inputs to later ones' ,
173173 () async {
174174 final writer = new InMemoryAssetWriter ();
175- var inputs = {'a|web/a.txt' : 'a' , 'a|lib/b.txt' : 'b' };
176- var outputs = {'a|web/a.txt.copy' : 'a' , 'a|lib/b.txt.copy' : 'b' };
175+ var inputs = < String , String > {'a|web/a.txt' : 'a' , 'a|lib/b.txt' : 'b' };
176+ var outputs = < String , String > {
177+ 'a|web/a.txt.copy' : 'a' ,
178+ 'a|lib/b.txt.copy' : 'b'
179+ };
177180 // First run, nothing special.
178181 await testPhases (copyAPhaseGroup, inputs, outputs: outputs, writer: writer);
179182 // Second run, should have no extra outputs.
@@ -182,8 +185,11 @@ main() {
182185
183186 test ('can recover from a deleted asset_graph.json cache' , () async {
184187 final writer = new InMemoryAssetWriter ();
185- var inputs = {'a|web/a.txt' : 'a' , 'a|lib/b.txt' : 'b' };
186- var outputs = {'a|web/a.txt.copy' : 'a' , 'a|lib/b.txt.copy' : 'b' };
188+ var inputs = < String , String > {'a|web/a.txt' : 'a' , 'a|lib/b.txt' : 'b' };
189+ var outputs = < String , String > {
190+ 'a|web/a.txt.copy' : 'a' ,
191+ 'a|lib/b.txt.copy' : 'b'
192+ };
187193 // First run, nothing special.
188194 await testPhases (copyAPhaseGroup, inputs, outputs: outputs, writer: writer);
189195
0 commit comments