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

Unified Diff: pkg/analyzer/test/src/summary/element_text.dart

Issue 2762863002: Issue 28580. Relax instantiate to bounds. (Closed)
Patch Set: Created 3 years, 9 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
Index: pkg/analyzer/test/src/summary/element_text.dart
diff --git a/pkg/analyzer/test/src/summary/element_text.dart b/pkg/analyzer/test/src/summary/element_text.dart
index e7727b4598deefa3d4e4fe3627d2c31c9fce28ad..387ce6af275af25d00f5261d2d640dbbdb0f9cd5 100644
--- a/pkg/analyzer/test/src/summary/element_text.dart
+++ b/pkg/analyzer/test/src/summary/element_text.dart
@@ -109,10 +109,10 @@ void checkElementText(LibraryElement library, String expected,
}
// Print the actual text to simplify copy/paste into the expectation.
-// if (actualText != expected) {
-// print('-------- Actual --------');
-// print(actualText + '------------------------');
-// }
+ if (actualText != expected) {
Brian Wilkerson 2017/03/21 13:39:55 Did you intend to leave this debugging code uncomm
+ print('-------- Actual --------');
+ print(actualText + '------------------------');
+ }
expect(actualText, expected);
}

Powered by Google App Engine
This is Rietveld 408576698