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

Unified Diff: tests/language_strong/bad_named_parameters2_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/bad_named_parameters2_test.dart
diff --git a/tests/language_strong/bad_named_parameters2_test.dart b/tests/language_strong/bad_named_parameters2_test.dart
index 65d9bf84a4a25d45902b18c972622d9317d4a9d9..59d7642ee181916a88d2165d8f05762e64c26e3c 100644
--- a/tests/language_strong/bad_named_parameters2_test.dart
+++ b/tests/language_strong/bad_named_parameters2_test.dart
@@ -22,11 +22,11 @@ class BadNamedParameters2Test {
try {
caught = false;
// No formal parameter named b.
- np.foo(b:25); /// 01: static type warning
+ np.foo(b:25); //# 01: static type warning
} on NoSuchMethodError catch (e) {
caught = true;
}
- Expect.equals(true, caught); /// 01: continued
+ Expect.equals(true, caught); //# 01: continued
}
}

Powered by Google App Engine
This is Rietveld 408576698