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

Unified Diff: tests/utils/test_utils.dart

Issue 12295014: Remove deprecated Strings class. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 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 | « tests/standalone/io/secure_stream_test.dart ('k') | tools/ddbg.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/utils/test_utils.dart
diff --git a/tests/utils/test_utils.dart b/tests/utils/test_utils.dart
index 40a2e5502f7cd4c62b27bba30d7cbeb4f933f2d2..a786fa2846365d2168670d3e89ecb8e381e576cb 100644
--- a/tests/utils/test_utils.dart
+++ b/tests/utils/test_utils.dart
@@ -30,7 +30,7 @@ String cleanUpLiteral(String text) {
}
}
- return Strings.join(lines, '\n');
+ return lines.join('\n');
}
/**
@@ -49,5 +49,5 @@ String indentLiteral(String text) {
lines[i] = " ${lines[i]}";
}
- return Strings.join(lines, "\n");
+ return lines.join("\n");
}
« no previous file with comments | « tests/standalone/io/secure_stream_test.dart ('k') | tools/ddbg.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698