From 58b04c246acec679649054194d8e5701e4e2cc42 Mon Sep 17 00:00:00 2001 From: KatKatKateryna Date: Thu, 5 Dec 2024 20:56:15 +0000 Subject: [PATCH] typo --- tests/unit/test_instances.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/unit/test_instances.py b/tests/unit/test_instances.py index de9dd81..138b5e8 100644 --- a/tests/unit/test_instances.py +++ b/tests/unit/test_instances.py @@ -2,7 +2,6 @@ import pytest from specklepy.core.api.models.instances import InstanceDefinitionProxy, InstanceProxy -from specklepy.core.api.models.proxies import ColorProxy, GroupProxy @pytest.fixture() @@ -34,11 +33,11 @@ def create_instance_proxy(): def create_instance_definition_proxy(): try: - GroupProxy() # missing parameters + InstanceDefinitionProxy() # missing parameters except AssertionError: assert True try: - GroupProxy(objects="", maxDepth=1, name="") # wrong type + InstanceDefinitionProxy(objects="", maxDepth=1, name="") # wrong type except AssertionError: assert True assert False