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: