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

Unified Diff: packages/csslib/test/compiler_test.dart

Issue 3015713002: Roll to pickup pool changes
Patch Set: Created 3 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 | « packages/csslib/pubspec.yaml ('k') | packages/csslib/test/error_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packages/csslib/test/compiler_test.dart
diff --git a/packages/csslib/test/compiler_test.dart b/packages/csslib/test/compiler_test.dart
index e64af7faab84ec869523f01739c3adde9de3ff18..5faabe27f119d85a8ebb2f8fc5a25cf89af82b69 100644
--- a/packages/csslib/test/compiler_test.dart
+++ b/packages/csslib/test/compiler_test.dart
@@ -533,9 +533,7 @@ void testArrayOfChars() {
expect(stylesheet != null, true);
expect(errors.isEmpty, true, reason: errors.toString());
- expect(
- prettyPrint(stylesheet),
- r'''
+ expect(prettyPrint(stylesheet), r'''
.foo {
color: #f00;
left: 20px;
@@ -597,9 +595,7 @@ div:nth-child(2n) { color : red; }
expect(stylesheet != null, true);
expect(errors.isEmpty, true, reason: errors.toString());
- expect(
- prettyPrint(stylesheet),
- r'''
+ expect(prettyPrint(stylesheet), r'''
html:lang(fr-ca) {
quotes: '" ' ' "';
}
@@ -669,9 +665,7 @@ void testHost() {
expect(stylesheet != null, true);
expect(errors.isEmpty, true, reason: errors.toString());
- expect(
- prettyPrint(stylesheet),
- r'''
+ expect(prettyPrint(stylesheet), r'''
@host {
:scope {
white-space: nowrap;
@@ -697,9 +691,7 @@ void testStringEscape() {
expect(stylesheet != null, true);
expect(errors.isEmpty, true, reason: errors.toString());
- expect(
- prettyPrint(stylesheet),
- r'''
+ expect(prettyPrint(stylesheet), r'''
a {
foo: '{"text" : "a\\\""}';
}''');
@@ -721,9 +713,7 @@ void testEmitter() {
walkTree(stylesheet);
- expect(
- prettyPrint(stylesheet),
- r'''
+ expect(prettyPrint(stylesheet), r'''
.foo {
color: #f00;
left: 20px;
« no previous file with comments | « packages/csslib/pubspec.yaml ('k') | packages/csslib/test/error_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698