| 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',
|
|
|