diff --git a/tests/test_resources/test_profile_registry.py b/tests/test_resources/test_profile_registry.py index 019f203..e55bcfa 100644 --- a/tests/test_resources/test_profile_registry.py +++ b/tests/test_resources/test_profile_registry.py @@ -1,8 +1,11 @@ # tests/test_resources/test_profile_registry.py import pytest +from unittest.mock import MagicMock + from circuitforge_core.resources.profiles.schema import ( GpuProfile, ServiceProfile, load_profile ) +from circuitforge_core.resources.coordinator.profile_registry import ProfileRegistry def test_load_8gb_profile(tmp_path): @@ -53,10 +56,6 @@ def test_service_profile_defaults(): assert svc.consumers == [] -from unittest.mock import MagicMock -from circuitforge_core.resources.coordinator.profile_registry import ProfileRegistry - - def test_profile_registry_loads_public_profiles(): registry = ProfileRegistry() profiles = registry.list_public()