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

Unified Diff: runtime/vm/dart_api_impl_test.cc

Issue 10414084: Replace linked list of loaded libraries (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 7 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: runtime/vm/dart_api_impl_test.cc
===================================================================
--- runtime/vm/dart_api_impl_test.cc (revision 7914)
+++ runtime/vm/dart_api_impl_test.cc (working copy)
@@ -4251,7 +4251,7 @@
result = Dart_Invoke(result, Dart_NewString("main"), 0, NULL);
EXPECT(Dart_IsError(result));
EXPECT_STREQ("Duplicate definition : 'foo' is defined in"
- " 'library1.dart' and 'library2.dart'\n",
+ " 'library2.dart' and 'library1.dart'\n",
Dart_GetError(result));
}
@@ -4324,7 +4324,7 @@
result = Dart_Invoke(result, Dart_NewString("main"), 0, NULL);
EXPECT(Dart_IsError(result));
EXPECT_STREQ("Duplicate definition : 'fooC' is defined in"
- " 'libraryF.dart' and 'libraryC.dart'\n",
+ " 'libraryC.dart' and 'libraryF.dart'\n",
Dart_GetError(result));
}

Powered by Google App Engine
This is Rietveld 408576698