Skip to content

Commit a30f51d

Browse files
wip
1 parent 6149fce commit a30f51d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

backend_py/primary/tests/integration/routers/timeseries/test_get_realizations_vector_data.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
from primary.routers.timeseries import router
55
from primary.routers.timeseries import schemas
6+
from primary.utils.query_string_utils import encode_as_uint_list_str
67

78

89
@pytest.mark.parametrize(
@@ -38,8 +39,8 @@ async def test_get_realizations_vector_data_dates(
3839
["realizations", "real_count", "expected_mean"],
3940
[
4041
(None, 100, 3945757.89),
41-
([0, 1, 2, 3, 4, 5], 6, 4074376.18),
42-
([0, 10, 99], 3, 4384017.10),
42+
(encode_as_uint_list_str([0, 1, 2, 3, 4, 5]), 6, 4074376.18),
43+
(encode_as_uint_list_str([0, 10, 99]), 3, 4384017.10),
4344
],
4445
)
4546
async def test_get_realizations_vector_data_realizations(

0 commit comments

Comments
 (0)