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

Unified Diff: tests/language_strong/default_factory_test.dart

Issue 2765693002: Update all tests (Closed)
Patch Set: Created 3 years, 9 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/language_strong/default_factory_test.dart
diff --git a/tests/language_strong/default_factory_test.dart b/tests/language_strong/default_factory_test.dart
index bac3a04b773f783a2ad4323525b05139fd7ace80..820d741d9320f7a40fac26f1ccf27b2129e7b424 100644
--- a/tests/language_strong/default_factory_test.dart
+++ b/tests/language_strong/default_factory_test.dart
@@ -7,7 +7,7 @@ import "package:expect/expect.dart";
// Dart test program for testing default factories.
abstract class Vehicle {
- factory Vehicle() = GoogleOne.Vehicle; /// 01: static type warning
+ factory Vehicle() = GoogleOne.Vehicle; //# 01: static type warning
}
@@ -31,5 +31,5 @@ class GoogleOne implements SpaceShip {
main() {
Expect.equals(true, (new Bike.redOne()) is Bike);
Expect.equals(true, (new SpaceShip()) is GoogleOne);
- Expect.equals(true, (new Vehicle()) is Bike); /// 01: continued
+ Expect.equals(true, (new Vehicle()) is Bike); //# 01: continued
}

Powered by Google App Engine
This is Rietveld 408576698