We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bee4400 commit a2b3106Copy full SHA for a2b3106
tests/test_utils.py
@@ -9,7 +9,7 @@
9
10
from _incydr_sdk.queries.utils import parse_str_to_dt
11
from _incydr_sdk.utils import _get_model_type
12
-from _incydr_sdk.utils import _is_singleton
+from _incydr_sdk.utils import _is_single
13
from _incydr_sdk.utils import flatten_fields
14
from _incydr_sdk.utils import get_field_value_and_info
15
from _incydr_sdk.utils import get_fields
@@ -247,8 +247,8 @@ def test_parse_str_to_dt(ts_str, expected):
247
(tuple, False),
248
],
249
)
250
-def test_is_singleton(type, expected):
251
- assert _is_singleton(type) == expected
+def test_is_single(type, expected):
+ assert _is_single(type) == expected
252
253
254
@pytest.mark.parametrize(
0 commit comments