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

Unified Diff: tests/language/type_cast_vm_test.dart

Issue 13526004: Fix linenumbers in VM tests. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/type_cast_vm_test.dart
diff --git a/tests/language/type_cast_vm_test.dart b/tests/language/type_cast_vm_test.dart
index e40ad2453bd0dac3f405b8e8124f2422e3f44c73..26a5fe4077aa0b5a0f2a039d6165cb5b4d50fbb5 100644
--- a/tests/language/type_cast_vm_test.dart
+++ b/tests/language/type_cast_vm_test.dart
@@ -34,7 +34,7 @@ class TypeTest {
}
String subs = error.url.substring(pos + 1, error.url.length);
Expect.equals("dart:core-patch", subs);
- Expect.equals(1889, error.line);
+ Expect.equals(1880, error.line);
Expect.equals(1, error.column);
}
return result;
@@ -76,7 +76,7 @@ class TypeTest {
}
String subs = error.url.substring(pos + 1, error.url.length);
Expect.equals("dart:core-patch", subs);
- Expect.equals(1889, error.line);
+ Expect.equals(1880, error.line);
Expect.equals(1, error.column);
}
return result;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698