diff --git a/tests/workspace/test_application_package_entity.py b/tests/workspace/test_application_package_entity.py index 5382c506b1..a7325d4b10 100644 --- a/tests/workspace/test_application_package_entity.py +++ b/tests/workspace/test_application_package_entity.py @@ -121,7 +121,7 @@ def test_deploy(mock_sync, mock_execute, project_directory, mock_cursor): app_pkg, bundle_ctx, mock_console = _get_app_pkg_entity(project_directory) - app_pkg.action_deploy(bundle_ctx) + app_pkg.action_deploy(bundle_ctx, prune=False, recursive=False, paths=["a/b", "c"]) mock_sync.assert_called_once_with( console=mock_console, @@ -133,7 +133,7 @@ def test_deploy(mock_sync, mock_execute, project_directory, mock_cursor): prune=False, recursive=False, stage_fqn="pkg.app_src.stage", - local_paths_to_sync=None, - print_diff=None, + local_paths_to_sync=["a/b", "c"], + print_diff=True, ) assert mock_execute.mock_calls == expected