From f7e6100b08fd114f44f5d7e2a76bf880f2b2ca1f Mon Sep 17 00:00:00 2001 From: Devon Carew Date: Fri, 1 Apr 2016 11:32:02 -0700 Subject: [PATCH] sort imports * sort imports --- examples/stocks/test/icon_color_test.dart | 4 ++-- examples/stocks/test/locale_test.dart | 4 ++-- examples/stocks/test_driver/scroll_perf_test.dart | 1 + 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/examples/stocks/test/icon_color_test.dart b/examples/stocks/test/icon_color_test.dart index 84a6a7b1bd6..59224cb5c40 100644 --- a/examples/stocks/test/icon_color_test.dart +++ b/examples/stocks/test/icon_color_test.dart @@ -4,12 +4,12 @@ import 'dart:ui' as ui show window; -import 'package:test/test.dart'; -import 'package:flutter_test/flutter_test.dart'; import 'package:flutter/material.dart'; import 'package:flutter/rendering.dart'; +import 'package:flutter_test/flutter_test.dart'; import 'package:stocks/main.dart' as stocks; import 'package:stocks/stock_data.dart' as stock_data; +import 'package:test/test.dart'; Element findElementOfExactWidgetTypeGoingDown(Element node, Type targetType) { void walker(Element child) { diff --git a/examples/stocks/test/locale_test.dart b/examples/stocks/test/locale_test.dart index 4044279feea..320806b39d1 100644 --- a/examples/stocks/test/locale_test.dart +++ b/examples/stocks/test/locale_test.dart @@ -2,11 +2,11 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -import 'package:test/test.dart'; -import 'package:flutter_test/flutter_test.dart'; import 'package:flutter/material.dart'; +import 'package:flutter_test/flutter_test.dart'; import 'package:stocks/main.dart' as stocks; import 'package:stocks/stock_data.dart' as stock_data; +import 'package:test/test.dart'; void main() { stock_data.StockDataFetcher.actuallyFetchData = false; diff --git a/examples/stocks/test_driver/scroll_perf_test.dart b/examples/stocks/test_driver/scroll_perf_test.dart index a6b3a306967..ce38abc335d 100644 --- a/examples/stocks/test_driver/scroll_perf_test.dart +++ b/examples/stocks/test_driver/scroll_perf_test.dart @@ -3,6 +3,7 @@ // found in the LICENSE file. import 'dart:async'; + import 'package:flutter_driver/flutter_driver.dart'; import 'package:test/test.dart';