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

Unified Diff: pkg/intl/test/find_default_locale_browser_test.dart

Issue 10961061: migrate raw string to new syntax in pkg (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 3 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: pkg/intl/test/find_default_locale_browser_test.dart
===================================================================
--- pkg/intl/test/find_default_locale_browser_test.dart (revision 12745)
+++ pkg/intl/test/find_default_locale_browser_test.dart (working copy)
@@ -21,7 +21,7 @@
verifyLocale(_) {
expect(Intl.systemLocale, isNot(equals("xx_YY")));
- var pattern = new RegExp(@"\w\w_[A-Z0-9]+");
+ var pattern = new RegExp(r"\w\w_[A-Z0-9]+");
var match = pattern.hasMatch(Intl.systemLocale);
expect(match, isTrue);
}
« no previous file with comments | « pkg/intl/test/date_time_format_test_core.dart ('k') | pkg/intl/test/find_default_locale_standalone_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698