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()); |