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

Unified Diff: tests/language/string_join_test.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/language/named_parameters_with_dollars_test.dart ('k') | tests/language/string_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/string_join_test.dart
diff --git a/tests/language/string_join_test.dart b/tests/language/string_join_test.dart
index d33233113a1d93268e1e68f1b15506eb18d564f5..c98b79fae691ba0de144a5f46f52f22d9616fb23 100644
--- a/tests/language/string_join_test.dart
+++ b/tests/language/string_join_test.dart
@@ -8,7 +8,8 @@ class StringJoinTest {
List<String> ga = new List<String>();
ga.add("a");
ga.add("b");
- Expect.equals("ab", Strings.join(ga, ""));
+ Expect.equals("ab", ga.join());
+ Expect.equals("ab", ga.join(""));
}
}
« no previous file with comments | « tests/language/named_parameters_with_dollars_test.dart ('k') | tests/language/string_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698