From 843b0b3b90a43cd1078ee1080533f4d549da84db Mon Sep 17 00:00:00 2001 From: Bryan Oltman Date: Tue, 7 Nov 2023 12:46:19 -0500 Subject: [PATCH] fix(shorebird_cli): fix failing test (#1461) --- .../shorebird_cli/test/src/code_push_client_wrapper_test.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; }