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

Unified Diff: tests/html/svg_3_test.dart

Issue 10947040: Take three of FooList to List<Foo> again. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 3 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: tests/html/svg_3_test.dart
===================================================================
--- tests/html/svg_3_test.dart (revision 12595)
+++ tests/html/svg_3_test.dart (working copy)
@@ -28,11 +28,11 @@
checkSVGTests(e) {
// Just check that the operations seem to exist.
var rx = e.requiredExtensions;
- Expect.isTrue(rx is SVGStringList);
+ Expect.isTrue(rx is List<String>);
var rf = e.requiredFeatures;
- Expect.isTrue(rf is SVGStringList);
+ Expect.isTrue(rf is List<String>);
var sl = e.systemLanguage;
- Expect.isTrue(sl is SVGStringList);
+ Expect.isTrue(sl is List<String>);
bool hasDoDo = e.hasExtension("DoDo");
Expect.isFalse(hasDoDo);

Powered by Google App Engine
This is Rietveld 408576698