diff --git a/packages/shorebird_cli/test/src/code_push_client_wrapper_test.dart b/packages/shorebird_cli/test/src/code_push_client_wrapper_test.dart index e9f042d2..e2522f38 100644 --- a/packages/shorebird_cli/test/src/code_push_client_wrapper_test.dart +++ b/packages/shorebird_cli/test/src/code_push_client_wrapper_test.dart @@ -1697,7 +1697,8 @@ Please bump your version number and try again.''', Directory setUpTempDir({String? flavor}) { final tempDir = Directory.systemTemp.createTempSync(); - File(p.join(tempDir.path, frameworkPath)).createSync(recursive: true); + Directory(p.join(tempDir.path, frameworkPath)) + .createSync(recursive: true); return tempDir; }