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

Unified Diff: tests/standalone/io/link_uri_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/standalone/io/link_uri_test.dart
diff --git a/tests/standalone/io/link_uri_test.dart b/tests/standalone/io/link_uri_test.dart
index e9afb0a14c4071bfee6f5b2df97bbd86bc70ae00..0652a5bd29028e614f06df008dafbb9932cacb60 100644
--- a/tests/standalone/io/link_uri_test.dart
+++ b/tests/standalone/io/link_uri_test.dart
@@ -38,9 +38,9 @@ void testFromUriUnsupported() {
() => new Link.fromUri(Uri.parse('http://localhost:8080/index.html')),
(e) => e is UnsupportedError);
Expect.throws(() => new Link.fromUri(Uri.parse('ftp://localhost/tmp/xxx')),
- (e) => e is UnsupportedError);
+ (e) => e is UnsupportedError);
Expect.throws(() => new Link.fromUri(Uri.parse('name#fragment')),
- (e) => e is UnsupportedError);
+ (e) => e is UnsupportedError);
}
void main() {

Powered by Google App Engine
This is Rietveld 408576698