Skip to content

Commit

Permalink
fix CI 2
Browse files Browse the repository at this point in the history
  • Loading branch information
konstntokas committed Jul 10, 2024
1 parent 49a3aae commit e345bc5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/core/store/test_descriptor.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def test_to_dict(self):
"data_type": "dataset",
"bbox": [10.0, 20.0, 30.0, 40.0],
"spatial_res": 20.0,
"time_range": ["2017-06-05", "2017-06-27"],
"time_range": ("2017-06-05", "2017-06-27"),
"time_period": "daily",
"open_params_schema": {
"type": "object",
Expand Down Expand Up @@ -193,7 +193,7 @@ def test_datetime_to_dict(self):
"data_type": "dataset",
"bbox": [10.0, 20.0, 30.0, 40.0],
"spatial_res": 20.0,
"time_range": ["2017-06-05T12:22:45Z", "2017-06-27T18:22:45Z"],
"time_range": ("2017-06-05T12:22:45Z", "2017-06-27T18:22:45Z"),
"time_period": "daily",
"open_params_schema": {
"type": "object",
Expand Down Expand Up @@ -344,7 +344,7 @@ def test_to_dict(self):
crs="EPSG:9346",
bbox=[10.0, 20.0, 30.0, 40.0],
spatial_res=20.0,
time_range=["2017-06-05", "2017-06-27"],
time_range=("2017-06-05", "2017-06-27"),
time_period="daily",
coords=dict(
rtdt=dict(
Expand Down

0 comments on commit e345bc5

Please sign in to comment.