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

Unified Diff: dart/tests/compiler/dart2js/minify_many_locals_test.dart

Issue 23195002: Update test after disallowing uppercase letters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 4 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: dart/tests/compiler/dart2js/minify_many_locals_test.dart
diff --git a/dart/tests/compiler/dart2js/minify_many_locals_test.dart b/dart/tests/compiler/dart2js/minify_many_locals_test.dart
index 5252816c7be555f598376b98933c349206aa7db2..1d62fa432f5a96171adc131afcfde434192b74f8 100644
--- a/dart/tests/compiler/dart2js/minify_many_locals_test.dart
+++ b/dart/tests/compiler/dart2js/minify_many_locals_test.dart
@@ -21,21 +21,21 @@ main() {
RegExp re = new RegExp(r"\(a,b,c");
Expect.isTrue(re.hasMatch(generated));
- re = new RegExp(r"x,y,z,A,B,C");
+ re = new RegExp(r"x,y,z,a0,a1,a2");
Expect.isTrue(re.hasMatch(generated));
-
- re = new RegExp(r"Y,Z,a0,a1,a2,a3,a4,a5,a6");
+
+ re = new RegExp(r"y,z,a0,a1,a2,a3,a4,a5,a6");
Expect.isTrue(re.hasMatch(generated));
re = new RegExp(r"g8,g9,h0,h1");
Expect.isTrue(re.hasMatch(generated));
- re = new RegExp(r"Z8,Z9,aa0,aa1,aa2");
+ re = new RegExp(r"z8,z9,aa0,aa1,aa2");
Expect.isTrue(re.hasMatch(generated));
re = new RegExp(r"aa9,ab0,ab1");
Expect.isTrue(re.hasMatch(generated));
- re = new RegExp(r"aZ9,ba0,ba1");
+ re = new RegExp(r"az9,ba0,ba1");
Expect.isTrue(re.hasMatch(generated));
}
« 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