From 8f74eac50c8d67b01374bbd47fc7d0b23f8e525c Mon Sep 17 00:00:00 2001 From: Jerry Yan <792602257@qq.com> Date: Mon, 13 Jul 2026 16:11:40 +0800 Subject: [PATCH] Jenkins --- tests/test_workspace_packaging.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_workspace_packaging.py b/tests/test_workspace_packaging.py index 2ced277..d9a4478 100644 --- a/tests/test_workspace_packaging.py +++ b/tests/test_workspace_packaging.py @@ -28,9 +28,9 @@ RUNTIME_PACKAGE_DIRS = ( def test_workspace_distributions_own_expected_import_packages() -> None: distributions = packages_distributions() - assert distributions.get("cloud") == ["device-cloud-platform"] - assert distributions.get("core") == ["device-agent-runtime"] - assert distributions.get("runtime") == ["device-agent-runtime"] + assert set(distributions.get("cloud", ())) == {"device-cloud-platform"} + assert set(distributions.get("core", ())) == {"device-agent-runtime"} + assert set(distributions.get("runtime", ())) == {"device-agent-runtime"} def test_runtime_project_does_not_declare_cloud_distribution() -> None: