Skip to content

Commit

Permalink
tests: updated test
Browse files Browse the repository at this point in the history
  • Loading branch information
doctrino committed Jan 20, 2024
1 parent f76ce95 commit 0db859c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/tests_unit/test_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

from cognite.client import ClientConfig, CogniteClient
from cognite.client.credentials import Token
from cognite.client.data_classes import Feature, FeatureAggregate
from cognite.client.data_classes import Feature, FeatureAggregate, Project
from cognite.client.data_classes._base import (
CogniteFilter,
CogniteLabelUpdate,
Expand Down Expand Up @@ -194,6 +194,8 @@ def test_dump_load_only_required(
[
pytest.param(class_, id=f"{class_.__name__} in {class_.__module__}")
for class_ in all_concrete_subclasses(WriteableCogniteResource)
# Project does not support as_write
if class_ is not Project
],
)
def test_writable_as_write(
Expand Down

0 comments on commit 0db859c

Please sign in to comment.