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

Unified Diff: utils/tests/pub/test_pub.dart

Issue 10977027: Update all occurrences of raw strings. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Don't disable just yet. 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
« tools/testing/dart/test_suite.dart ('K') | « utils/template/uitest.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/tests/pub/test_pub.dart
diff --git a/utils/tests/pub/test_pub.dart b/utils/tests/pub/test_pub.dart
index 3a64e0575f0fd88d096067a38e227dded73c0e23..c5a6b84d3ec3cda484fe1cff5f8a92d2f923b143 100644
--- a/utils/tests/pub/test_pub.dart
+++ b/utils/tests/pub/test_pub.dart
@@ -302,7 +302,7 @@ DirectoryDescriptor packageCacheDir(String name, String version) {
DirectoryDescriptor gitPackageRevisionCacheDir(String name, [int modifier]) {
var value = name;
if (modifier != null) value = "$name $modifier";
- return dir(new RegExp("$name${@'-[a-f0-9]+'}"), [
+ return dir(new RegExp("$name${r'-[a-f0-9]+'}"), [
libDir(name, value)
]);
}
@@ -312,7 +312,7 @@ DirectoryDescriptor gitPackageRevisionCacheDir(String name, [int modifier]) {
* in the repo cache of the global package cache.
*/
DirectoryDescriptor gitPackageRepoCacheDir(String name) {
- return dir(new RegExp("$name${@'-[a-f0-9]+'}"), [
+ return dir(new RegExp("$name${r'-[a-f0-9]+'}"), [
dir('branches'),
dir('hooks'),
dir('info'),
« tools/testing/dart/test_suite.dart ('K') | « utils/template/uitest.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698