Index: tests/lib_strong/html/document_test.dart |
diff --git a/tests/lib_strong/html/document_test.dart b/tests/lib_strong/html/document_test.dart |
index b7d8f609701dd7790a9b1f0eab9fb98bc6715b7d..9536b3fd5ea2020540ac3ba43322bc3d8343a717 100644 |
--- a/tests/lib_strong/html/document_test.dart |
+++ b/tests/lib_strong/html/document_test.dart |
@@ -25,11 +25,12 @@ main() { |
test('Document.query', () { |
Document doc = new DomParser().parseFromString( |
- '''<ResultSet> |
+ '''<ResultSet> |
<Row>A</Row> |
<Row>B</Row> |
<Row>C</Row> |
- </ResultSet>''','text/xml'); |
+ </ResultSet>''', |
+ 'text/xml'); |
var rs = doc.query('ResultSet'); |
expect(rs, isNotNull); |