@@ -46,7 +46,7 @@ void main() {
4646 var inputSpecFile =
4747 File ('$parentFolder /github_issue_#$issueNumber .json' );
4848 var outputDir = Directory ('./test/specs/issue/$issueNumber /output' );
49- var generatedOutput = await generateFromAnnotation (
49+ await generateFromAnnotation (
5050 Openapi (
5151 additionalProperties: AdditionalProperties (
5252 pubName: 'tictactoe_api' ,
@@ -98,7 +98,7 @@ void main() {
9898 var inputSpecFile =
9999 File ('$parentFolder /github_issue_#$issueNumber .json' );
100100
101- var generatedOutput = await generateFromPath (
101+ await generateFromPath (
102102 annotatedFile.path,
103103 openapiSpecFilePath: inputSpecFile.path,
104104 process: processRunner,
@@ -131,7 +131,7 @@ void main() {
131131 var inputSpecFile =
132132 File ('$parentFolder /github_issue_#$issueNumber .json' );
133133
134- var generatedOutput = await generateFromPath (
134+ await generateFromPath (
135135 annotatedFile.path,
136136 process: processRunner,
137137 openapiSpecFilePath: inputSpecFile.path,
@@ -178,7 +178,7 @@ void main() {
178178 var inputSpecFile =
179179 File ('$parentFolder /github_issue_#$issueNumber .json' );
180180
181- var generatedOutput = await generateFromPath (
181+ await generateFromPath (
182182 annotatedFile.path,
183183 process: processRunner,
184184 openapiSpecFilePath: inputSpecFile.path,
@@ -208,7 +208,7 @@ void main() {
208208 var inputSpecFile =
209209 File ('$parentFolder /github_issue_#$issueNumber .json' );
210210
211- var generatedOutput = await generateFromPath (
211+ await generateFromPath (
212212 annotatedFile.path,
213213 process: processRunner,
214214 openapiSpecFilePath: inputSpecFile.path,
@@ -258,7 +258,7 @@ void main() {
258258 // var annotatedFileContents = annotatedFile.readAsStringSync();
259259 var inputSpecFile = File ('$parentFolder /github_issue_#135.json' );
260260
261- var generatedOutput = await generateFromPath (annotatedFile.path,
261+ await generateFromPath (annotatedFile.path,
262262 process: processRunner, openapiSpecFilePath: inputSpecFile.path);
263263
264264 var annotation = await getConstantReaderForPath (file: annotatedFile);
@@ -285,7 +285,7 @@ void main() {
285285 // var annotatedFileContents = annotatedFile.readAsStringSync();
286286 var inputSpecFile = File ('$parentFolder /github_issue_#135.json' );
287287
288- var generatedOutput = await generateFromPath (annotatedFile.path,
288+ await generateFromPath (annotatedFile.path,
289289 process: processRunner, openapiSpecFilePath: inputSpecFile.path);
290290
291291 var annotation = await getConstantReaderForPath (file: annotatedFile);
@@ -356,7 +356,7 @@ void main() {
356356 );
357357 test ('[dio] Test that generation does not fail' , () async {
358358 var outputDir = Directory ('./test/specs/issue/$issueNumber /output' );
359- var generatedOutput = await generateFromAnnotation (
359+ await generateFromAnnotation (
360360 Openapi (
361361 additionalProperties: DioProperties (
362362 pubName: 'petstore_api' , pubAuthor: 'Johnny_dep' ),
@@ -397,7 +397,7 @@ void main() {
397397 );
398398 test ('[dio] Test that generation does not fail' , () async {
399399 var outputDir = Directory ('./test/specs/issue/$issueNumber /output' );
400- var generatedOutput = await generateFromAnnotation (
400+ await generateFromAnnotation (
401401 Openapi (
402402 additionalProperties: DioAltProperties (
403403 pubName: 'issue_api' ,
0 commit comments