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

Unified Diff: tests/standalone/io/network_interface_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/network_interface_test.dart
diff --git a/tests/standalone/io/network_interface_test.dart b/tests/standalone/io/network_interface_test.dart
index 71f8312b464bad28d0722944f833be5583feacd8..bfdd20eecff590c578b0c161ac22a5e9e748de35 100644
--- a/tests/standalone/io/network_interface_test.dart
+++ b/tests/standalone/io/network_interface_test.dart
@@ -6,7 +6,6 @@ import 'dart:io';
import "package:expect/expect.dart";
-
void testListLoopback() {
NetworkInterface.list(includeLoopback: false).then((list) {
for (var i in list) {
@@ -21,7 +20,6 @@ void testListLoopback() {
});
}
-
void testListLinkLocal() {
NetworkInterface.list(includeLinkLocal: false).then((list) {
for (var i in list) {
@@ -32,7 +30,6 @@ void testListLinkLocal() {
});
}
-
void testListIndex() {
var set = new Set();
NetworkInterface.list(includeLoopback: true).then((list) {
@@ -45,7 +42,6 @@ void testListIndex() {
});
}
-
void main() {
if (!NetworkInterface.listSupported) {
return;

Powered by Google App Engine
This is Rietveld 408576698