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

Unified Diff: tests/html/xsltprocessor_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/xsltprocessor_test.dart
diff --git a/tests/html/xsltprocessor_test.dart b/tests/html/xsltprocessor_test.dart
index b645d816fed3950bf72ddb324711ddf82195f576..d70ce48075265144bd6e5734f3c0c1b7badbdeaf 100644
--- a/tests/html/xsltprocessor_test.dart
+++ b/tests/html/xsltprocessor_test.dart
@@ -1,10 +1,10 @@
library XSLTProcessorTest;
+
import 'package:unittest/unittest.dart';
import 'package:unittest/html_individual_config.dart';
import 'dart:html';
main() {
-
useHtmlIndividualConfiguration();
group('supported', () {
@@ -15,7 +15,7 @@ main() {
group('functional', () {
var isXsltProcessor =
- predicate((x) => x is XsltProcessor, 'is an XsltProcessor');
+ predicate((x) => x is XsltProcessor, 'is an XsltProcessor');
var expectation = XsltProcessor.supported ? returnsNormally : throws;
@@ -27,5 +27,4 @@ main() {
}, expectation);
});
});
-
}

Powered by Google App Engine
This is Rietveld 408576698