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

Unified Diff: utils/tests/pub/pub_update_git_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: Respond to review. 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
« no previous file with comments | « utils/tests/pub/pub_install_test.dart ('k') | utils/tests/pub/pub_update_hosted_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/tests/pub/pub_update_git_test.dart
diff --git a/utils/tests/pub/pub_update_git_test.dart b/utils/tests/pub/pub_update_git_test.dart
index fe622694331430c907d87295f25b5c6b0e81b953..c80d8d44c358bf1532d81c4f7ce19203d1e02525 100644
--- a/utils/tests/pub/pub_update_git_test.dart
+++ b/utils/tests/pub/pub_update_git_test.dart
@@ -26,7 +26,7 @@ main() {
appDir([{"git": "../foo.git"}, {"git": "../bar.git"}]).scheduleCreate();
schedulePub(args: ['install'],
- output: const RegExp(@"Dependencies installed!$"));
+ output: const RegExp(r"Dependencies installed!$"));
dir(packagesPath, [
dir('foo', [
@@ -48,7 +48,7 @@ main() {
]).scheduleCommit();
schedulePub(args: ['update'],
- output: const RegExp(@"Dependencies updated!$"));
+ output: const RegExp(r"Dependencies updated!$"));
dir(packagesPath, [
dir('foo', [
@@ -73,7 +73,7 @@ main() {
appDir([{"git": "../foo.git"}]).scheduleCreate();
schedulePub(args: ['install'],
- output: const RegExp(@"Dependencies installed!$"));
+ output: const RegExp(r"Dependencies installed!$"));
dir(packagesPath, [
dir('foo', [
@@ -87,8 +87,8 @@ main() {
]).scheduleCommit();
schedulePub(args: ['update'],
- error: const RegExp(@'The name you specified for your dependency, '
- @'"foo", doesn' @"'" @'t match the name "zoo" in its pubspec.'),
+ error: const RegExp(r'The name you specified for your dependency, '
+ r'"foo", doesn' "'" r't match the name "zoo" in its pubspec.'),
exitCode: 1);
dir(packagesPath, [
@@ -112,7 +112,7 @@ main() {
appDir([{"git": "../foo.git"}]).scheduleCreate();
schedulePub(args: ['install'],
- output: const RegExp(@"Dependencies installed!$"));
+ output: const RegExp(r"Dependencies installed!$"));
dir(packagesPath, [
dir('foo', [
@@ -124,8 +124,8 @@ main() {
repo.scheduleGit(['commit', '-m', 'delete']);
schedulePub(args: ['update'],
- error: const RegExp(@'Package "foo" doesn' @"'" @'t have a '
- @'pubspec.yaml file.'),
+ error: const RegExp(r'Package "foo" doesn' "'" r't have a '
+ r'pubspec.yaml file.'),
exitCode: 1);
dir(packagesPath, [
@@ -154,7 +154,7 @@ main() {
appDir([{"git": "../foo.git"}, {"git": "../bar.git"}]).scheduleCreate();
schedulePub(args: ['install'],
- output: const RegExp(@"Dependencies installed!$"));
+ output: const RegExp(r"Dependencies installed!$"));
dir(packagesPath, [
dir('foo', [
@@ -176,7 +176,7 @@ main() {
]).scheduleCommit();
schedulePub(args: ['update', 'foo'],
- output: const RegExp(@"Dependencies updated!$"));
+ output: const RegExp(r"Dependencies updated!$"));
dir(packagesPath, [
dir('foo', [
@@ -207,7 +207,7 @@ main() {
appDir([{"git": "../foo.git"}]).scheduleCreate();
schedulePub(args: ['install'],
- output: const RegExp(@"Dependencies installed!$"));
+ output: const RegExp(r"Dependencies installed!$"));
dir(packagesPath, [
dir('foo', [
@@ -229,7 +229,7 @@ main() {
]).scheduleCommit();
schedulePub(args: ['update', 'foo'],
- output: const RegExp(@"Dependencies updated!$"));
+ output: const RegExp(r"Dependencies updated!$"));
dir(packagesPath, [
dir('foo', [
« no previous file with comments | « utils/tests/pub/pub_install_test.dart ('k') | utils/tests/pub/pub_update_hosted_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698