From 08d7811f7fd4008e8194263b3a9ebd79a44f4bd2 Mon Sep 17 00:00:00 2001 From: Phil Quitslund Date: Tue, 27 Apr 2021 10:09:02 -0700 Subject: [PATCH] sort directives (#81210) --- dev/devicelab/bin/tasks/dart_plugin_registry_test.dart | 2 +- dev/devicelab/lib/tasks/dart_plugin_registry_tests.dart | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dev/devicelab/bin/tasks/dart_plugin_registry_test.dart b/dev/devicelab/bin/tasks/dart_plugin_registry_test.dart index 50c50aebcbc..1688aadf79a 100644 --- a/dev/devicelab/bin/tasks/dart_plugin_registry_test.dart +++ b/dev/devicelab/bin/tasks/dart_plugin_registry_test.dart @@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -import 'package:flutter_devicelab/tasks/dart_plugin_registry_tests.dart'; import 'package:flutter_devicelab/framework/framework.dart'; +import 'package:flutter_devicelab/tasks/dart_plugin_registry_tests.dart'; Future main() async { await task(dartPluginRegistryTest()); diff --git a/dev/devicelab/lib/tasks/dart_plugin_registry_tests.dart b/dev/devicelab/lib/tasks/dart_plugin_registry_tests.dart index 444ddee047e..1fa7b8ff85d 100644 --- a/dev/devicelab/lib/tasks/dart_plugin_registry_tests.dart +++ b/dev/devicelab/lib/tasks/dart_plugin_registry_tests.dart @@ -6,10 +6,10 @@ import 'dart:async'; import 'dart:convert'; import 'dart:io'; -import 'package:path/path.dart' as path; import 'package:flutter_devicelab/framework/framework.dart'; import 'package:flutter_devicelab/framework/task_result.dart'; import 'package:flutter_devicelab/framework/utils.dart'; +import 'package:path/path.dart' as path; TaskFunction dartPluginRegistryTest({ String deviceIdOverride,