Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(74)

Unified Diff: lib/src/runner/reporter/expanded.dart

Issue 1219653003: Print the full names of tests where possible. (Closed) Base URL: git@github.com:dart-lang/test@master
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/src/runner/reporter/compact.dart ('k') | pubspec.yaml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/runner/reporter/expanded.dart
diff --git a/lib/src/runner/reporter/expanded.dart b/lib/src/runner/reporter/expanded.dart
index cb167bb3bb2ad4d232eeb7f6045713d926926045..f802ae0a7c5996d378fcd99b172976e15d9409e5 100644
--- a/lib/src/runner/reporter/expanded.dart
+++ b/lib/src/runner/reporter/expanded.dart
@@ -252,12 +252,7 @@ class ExpandedReporter {
buffer.write(': ');
buffer.write(color);
-
- // Ensure the line fits within [_lineLength]. [buffer] includes the color
- // escape sequences too. Because these sequences are not visible characters,
- // we make sure they are not counted towards the limit.
- var length = withoutColors(buffer.toString()).length;
- buffer.write(truncate(message, _lineLength - length));
+ buffer.write(message);
buffer.write(_noColor);
print(buffer.toString());
« no previous file with comments | « lib/src/runner/reporter/compact.dart ('k') | pubspec.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698