Skip to content

Commit a2b3106

Browse files
tests
1 parent bee4400 commit a2b3106

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_utils.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
from _incydr_sdk.queries.utils import parse_str_to_dt
1111
from _incydr_sdk.utils import _get_model_type
12-
from _incydr_sdk.utils import _is_singleton
12+
from _incydr_sdk.utils import _is_single
1313
from _incydr_sdk.utils import flatten_fields
1414
from _incydr_sdk.utils import get_field_value_and_info
1515
from _incydr_sdk.utils import get_fields
@@ -247,8 +247,8 @@ def test_parse_str_to_dt(ts_str, expected):
247247
(tuple, False),
248248
],
249249
)
250-
def test_is_singleton(type, expected):
251-
assert _is_singleton(type) == expected
250+
def test_is_single(type, expected):
251+
assert _is_single(type) == expected
252252

253253

254254
@pytest.mark.parametrize(

0 commit comments

Comments
 (0)