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

Unified Diff: tests/html/document_test.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 years, 8 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
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);

Powered by Google App Engine
This is Rietveld 408576698