Skip to content

Commit 2f6b9bc

Browse files
Fixed compilation error
1 parent 14d9012 commit 2f6b9bc

File tree

1 file changed

+2
-2
lines changed
  • packages/flutter_test_runners/lib/src/platform_comms/ios

1 file changed

+2
-2
lines changed

packages/flutter_test_runners/lib/src/platform_comms/ios/xcrun.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ class Xcrun {
2525
// ]);
2626

2727
print("Trying command through shell - no grep...");
28-
final result = await _runInShell([
28+
var result = await _runInShell([
2929
"xcrun simctl spawn booted launchctl list",
3030
]);
3131
print("Done with command without grep");
3232

3333
print("Trying command through shell with '| grep'...");
34-
final result = await _runInShell([
34+
result = await _runInShell([
3535
"xcrun simctl spawn booted launchctl list | grep \"$appBundleId\"",
3636
]);
3737
final output = result.stdout;

0 commit comments

Comments
 (0)