Skip to content

Commit 7992deb

Browse files
Fix integration tests. Regression after #857 (#868)
1 parent cc1c4a1 commit 7992deb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ async def test_get_realizations_vector_data_dates(
3131
# check the first realization
3232
first_real_results = realization_data[0]
3333
assert isinstance(first_real_results, schemas.VectorRealizationData)
34-
assert len(first_real_results.timestamps_utc_ms) == date_count
34+
assert len(first_real_results.timestampsUtcMs) == date_count
3535
assert np.isclose(np.mean(first_real_results.values), expected_mean, atol=1e-5)
3636

3737

0 commit comments

Comments
 (0)