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

Unified Diff: tests/compiler/dart2js/serialization/test_data.dart

Issue 2125823002: Handle redirects to unresolved redirects (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 4 years, 5 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/compiler/dart2js/serialization/test_data.dart
diff --git a/tests/compiler/dart2js/serialization/test_data.dart b/tests/compiler/dart2js/serialization/test_data.dart
index 53312bbed30005c91e7f702dc95ac71cbdf8c7d0..19cebd991373d51833a078ce0f7bf07ccf3f13ff 100644
--- a/tests/compiler/dart2js/serialization/test_data.dart
+++ b/tests/compiler/dart2js/serialization/test_data.dart
@@ -110,7 +110,7 @@ main() {
},
expectedWarningCount: 1),
- const Test('Impliment Comparable with incompatible parameter types', const {
+ const Test('Implement Comparable with incompatible parameter types', const {
'main.dart': r'''
class Class implements Comparable<Class> {
int compareTo(String other) => 0;
@@ -122,7 +122,7 @@ main() {
expectedWarningCount: 1,
expectedInfoCount: 1),
- const Test('Impliment Comparable with incompatible parameter count', const {
+ const Test('Implement Comparable with incompatible parameter count', const {
'main.dart': r'''
class Class implements Comparable {
bool compareTo(a, b) => true;

Powered by Google App Engine
This is Rietveld 408576698