File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed
Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -281,17 +281,15 @@ func runRpcFuzz(ctx context.Context) error {
281281 testResults .GenerateTabularResult ()
282282 if * testExportJson {
283283 testResults .ExportResultToJSON (filepath .Join (* testOutputExportPath , "output.json" ))
284- }
285- if * testExportCSV {
284+ } else if * testExportCSV {
286285 testResults .ExportResultToCSV (filepath .Join (* testOutputExportPath , "output.csv" ))
287- }
288- if * testExportMarkdown {
286+ } else if * testExportMarkdown {
289287 testResults .ExportResultToMarkdown (filepath .Join (* testOutputExportPath , "output.md" ))
290- }
291- if * testExportHTML {
288+ } else if * testExportHTML {
292289 testResults .ExportResultToHTML (filepath .Join (* testOutputExportPath , "output.html" ))
290+ } else {
291+ testResults .PrintTabularResult ()
293292 }
294- testResults .PrintTabularResult ()
295293
296294 return nil
297295}
You can’t perform that action at this time.
0 commit comments