Index: tests/html/document_test.dart |
diff --git a/tests/html/document_test.dart b/tests/html/document_test.dart |
index 2ed520f756803cb05ea5e9eecd39b33580d86d23..ab3ff79c1c17b9c7138820d168505d75aa238efb 100644 |
--- a/tests/html/document_test.dart |
+++ b/tests/html/document_test.dart |
@@ -1,4 +1,5 @@ |
library DocumentTest; |
+ |
import 'package:unittest/unittest.dart'; |
import 'package:unittest/html_individual_config.dart'; |
import 'dart:html'; |
@@ -28,11 +29,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); |