Index: test/selector_test.dart |
diff --git a/test/selector_test.dart b/test/selector_test.dart |
index 3f764e70a85a7e13dd643c3da87909f0b4e5bd07..43a5a358aff22467ceef652cfcac484f67a8e1b8 100644 |
--- a/test/selector_test.dart |
+++ b/test/selector_test.dart |
@@ -27,8 +27,8 @@ void testSelectorSuccesses() { |
expect(errors.isEmpty, true, reason: errors.toString()); |
expect('.foobar .a-story .xyzzy', compactOuptut(selectorAst)); |
- selectorAst = selector('.foobar .xyzzy .a-story .b-story', |
- errors: errors..clear()); |
+ selectorAst = |
+ selector('.foobar .xyzzy .a-story .b-story', errors: errors..clear()); |
expect(errors.isEmpty, true, reason: errors.toString()); |
expect('.foobar .xyzzy .a-story .b-story', compactOuptut(selectorAst)); |
@@ -56,7 +56,7 @@ void testSelectorFailures() { |
expect(errors.isEmpty, false); |
expect(errors[0].toString(), |
'error on line 1, column 9: name must start with a alpha character, but ' |
- 'found a number\n' |
+ 'found a number\n' |
'.foobar .1a-story .xyzzy\n' |
' ^^'); |
} |