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

Unified Diff: tests/corelib/set_to_string_test.dart

Issue 27040002: Revert set_to_string_test too. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/corelib/set_to_string_test.dart
diff --git a/tests/corelib/set_to_string_test.dart b/tests/corelib/set_to_string_test.dart
index fd67fdc510cf0e0d1ea5998d40870ccf2e5309e4..55f31da81ce4ac3165c5a8acd71c1c770abb7910 100644
--- a/tests/corelib/set_to_string_test.dart
+++ b/tests/corelib/set_to_string_test.dart
@@ -19,14 +19,14 @@ void main() {
q.add(q);
q.add(s);
- Expect.equals("(1, 2, (...), {{...}})", q.toString());
+ Expect.equals("{1, 2, {...}, {{...}}}", q.toString());
// Throwing in the middle of a toString does not leave the
// set as being visited
q.addLast(new ThrowOnToString());
Expect.throws(q.toString, (e) => e == "Bad!");
q.removeLast();
- Expect.equals("(1, 2, (...), {{...}})", q.toString());
+ Expect.equals("{1, 2, {...}, {{...}}}", q.toString());
}
class ThrowOnToString {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698