From 2e215fdfe4e047133a897bb945fec21628383b9f Mon Sep 17 00:00:00 2001 From: Danny Tuppeny Date: Thu, 12 Jul 2018 16:24:39 +0100 Subject: [PATCH] Align expressions better (#19256) --- dev/devicelab/lib/tasks/microbenchmarks.dart | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/dev/devicelab/lib/tasks/microbenchmarks.dart b/dev/devicelab/lib/tasks/microbenchmarks.dart index 50a6bef3835..ef257c5efe9 100644 --- a/dev/devicelab/lib/tasks/microbenchmarks.dart +++ b/dev/devicelab/lib/tasks/microbenchmarks.dart @@ -131,12 +131,12 @@ Future> _readJsonResults(Process process) { // https://github.com/flutter/flutter/issues/19096#issuecomment-402756549 if (resultsHaveBeenParsed) { throw 'Additional JSON was received after results has already been ' - 'processed. This suggests the `flutter run` process may have lived ' - 'past the end of our test and collected additional output from the ' - 'next test.\n\n' - 'The JSON below contains all collected output, including both from ' - 'the original test and what followed.\n\n' - '$jsonOutput'; + 'processed. This suggests the `flutter run` process may have lived ' + 'past the end of our test and collected additional output from the ' + 'next test.\n\n' + 'The JSON below contains all collected output, including both from ' + 'the original test and what followed.\n\n' + '$jsonOutput'; } jsonStarted = false;