From a6d2aff3e4d885ca5ed43d01ad97da50a5043c2b Mon Sep 17 00:00:00 2001 From: Chong Gao Date: Mon, 14 Sep 2026 15:53:52 +0800 Subject: [PATCH] Fix Iceberg runtime stub in root-safe packaging test Signed-off-by: Chong Gao --- dist/scripts/tests/test_root_safe_provider_selection.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dist/scripts/tests/test_root_safe_provider_selection.py b/dist/scripts/tests/test_root_safe_provider_selection.py index 148286fcdea..f1405377994 100644 --- a/dist/scripts/tests/test_root_safe_provider_selection.py +++ b/dist/scripts/tests/test_root_safe_provider_selection.py @@ -128,6 +128,8 @@ def setUp(self): (self.config_dir / "keep-in-spark-shim-dirs.txt").write_text( "org/apache/iceberg/*.class\n") (self.config_dir / "build" / "iceberg_runtime.py").write_text( + "def system_runtime_path(get_property):\n" + " return None\n" "def coordinates(zip_handle, buildver, scala_version, get_property):\n" " return []\n") create_artifacts(self.project_dir)