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

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

Issue 10981031: Convert raw strings in pub (and apidoc) to new syntax. (Closed) Base URL: https://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: utils/tests/pub/pub_install_sdk_test.dart
diff --git a/utils/tests/pub/pub_install_sdk_test.dart b/utils/tests/pub/pub_install_sdk_test.dart
index dd88a451524b6c9526b61d61643efcbbf75f47f0..43ba1bea943e8d027683045f5d6f4899b179bd80 100644
--- a/utils/tests/pub/pub_install_sdk_test.dart
+++ b/utils/tests/pub/pub_install_sdk_test.dart
@@ -26,7 +26,7 @@ main() {
]).scheduleCreate();
schedulePub(args: ['install'],
- output: const RegExp(@"Dependencies installed!$"));
+ output: const RegExp(r"Dependencies installed!$"));
packagesDir({"foo": "0.0.1234"}).scheduleValidate();
@@ -53,7 +53,7 @@ main() {
]).scheduleCreate();
schedulePub(args: ['install'],
- output: const RegExp(@"Dependencies installed!$"));
+ output: const RegExp(r"Dependencies installed!$"));
packagesDir({
'foo': '0.0.1234',

Powered by Google App Engine
This is Rietveld 408576698