Commit 526113db authored by Antti Ahti's avatar Antti Ahti Committed by Michael Goderbauer

Fix tab indentation (#31798)

Code indentation was done with tabs in some places. Replaced with spaces.
parent cc239580
...@@ -1436,7 +1436,7 @@ void main() { ...@@ -1436,7 +1436,7 @@ void main() {
await expectLater( await expectLater(
find.byType(BottomNavigationBar), find.byType(BottomNavigationBar),
matchesGoldenFile('bottom_navigation_bar.shifting_transition.2.$pump.png'), matchesGoldenFile('bottom_navigation_bar.shifting_transition.2.$pump.png'),
skip: !Platform.isLinux, skip: !Platform.isLinux,
); );
} }
}); });
......
...@@ -134,7 +134,7 @@ void main() { ...@@ -134,7 +134,7 @@ void main() {
mainAxisAlignment: MainAxisAlignment.spaceEvenly, mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: <Widget>[ children: <Widget>[
Text(character, style: style, locale: const Locale('ja')), Text(character, style: style, locale: const Locale('ja')),
Text(character, style: style, locale: const Locale('zh')), Text(character, style: style, locale: const Locale('zh')),
], ],
), ),
), ),
......
...@@ -417,7 +417,7 @@ class FlutterRunTestDriver extends FlutterTestDriver { ...@@ -417,7 +417,7 @@ class FlutterRunTestDriver extends FlutterTestDriver {
await _setupProcess( await _setupProcess(
<String>[ <String>[
'run', 'run',
'--disable-service-auth-codes', '--disable-service-auth-codes',
'--machine', '--machine',
'-d', '-d',
'flutter-tester', 'flutter-tester',
...@@ -608,7 +608,7 @@ class FlutterTestTestDriver extends FlutterTestDriver { ...@@ -608,7 +608,7 @@ class FlutterTestTestDriver extends FlutterTestDriver {
}) async { }) async {
await _setupProcess(<String>[ await _setupProcess(<String>[
'test', 'test',
'--disable-service-auth-codes', '--disable-service-auth-codes',
'--machine', '--machine',
'-d', '-d',
'flutter-tester', 'flutter-tester',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment