From c8504242fd6beb37dda1f1a1299a51baf0f5bf02 Mon Sep 17 00:00:00 2001 From: Jason Simmons Date: Wed, 27 Oct 2021 09:33:05 -0700 Subject: [PATCH] Remove the pub offline flag from tests of the flutter_tools create command (#92534) --- .../test/commands.shard/permeable/create_test.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/flutter_tools/test/commands.shard/permeable/create_test.dart b/packages/flutter_tools/test/commands.shard/permeable/create_test.dart index 754c291568..535e074f9a 100755 --- a/packages/flutter_tools/test/commands.shard/permeable/create_test.dart +++ b/packages/flutter_tools/test/commands.shard/permeable/create_test.dart @@ -1399,7 +1399,7 @@ void main() { final CreateCommand command = CreateCommand(); final CommandRunner runner = createTestCommandRunner(command); - await runner.run(['create', '--template=module', '--offline', '--org', 'com.foo.bar','--ios-language=objc', '--project-name=my_project', projectDir.path]); + await runner.run(['create', '--template=module', '--org', 'com.foo.bar','--ios-language=objc', '--project-name=my_project', projectDir.path]); final String plistPath = globals.fs.path.join('.ios', 'Runner', 'Info.plist'); final File plistFile = globals.fs.file(globals.fs.path.join(projectDir.path, plistPath)); @@ -1423,7 +1423,7 @@ void main() { final CreateCommand command = CreateCommand(); final CommandRunner runner = createTestCommandRunner(command); - await runner.run(['create', '--template=module', '--offline', '--org', 'com.foo.bar','--ios-language=swift', '--project-name=my_project', projectDir.path]); + await runner.run(['create', '--template=module', '--org', 'com.foo.bar','--ios-language=swift', '--project-name=my_project', projectDir.path]); final String plistPath = globals.fs.path.join('.ios', 'Runner', 'Info.plist'); final File plistFile = globals.fs.file(globals.fs.path.join(projectDir.path, plistPath)); @@ -1439,7 +1439,7 @@ void main() { botDetector: globals.botDetector, platform: globals.platform, ), - }, skip: true); // TODO(fujino): https://github.com/flutter/flutter/issues/92522 + }); testUsingContext('display name is Title Case for swift iOS plugin.', () async { Cache.flutterRoot = '../..'; -- GitLab