Skip to content

Commit

Permalink
fix: skip test
Browse files Browse the repository at this point in the history
  • Loading branch information
nodegard committed Oct 16, 2024
1 parent 5699edc commit 0b03d5c
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions tests/test_unit/test_resync/test_utils.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from __future__ import annotations

import logging
from typing import ClassVar
from unittest import mock
from unittest.mock import patch

Expand Down Expand Up @@ -62,16 +61,9 @@ def test_get_type_prefix_from_string():
# Tests for get_data_model_write_classes


class DataModelClient:
_view_by_read_class: ClassVar[dict] = {
Alert: None,
BenchmarkingCalculationInput: None,
}


@pytest.mark.skip("Not implemented mock for DataModelClient")
def test_get_data_model_write_classes():
data_model_client = DataModelClient()
pref_class_dict = get_data_model_write_classes(data_model_client)
pref_class_dict = get_data_model_write_classes("data_model_client")

# check that the result is a dictionary
if not isinstance(pref_class_dict, dict):
Expand Down

0 comments on commit 0b03d5c

Please sign in to comment.