Skip to content

Commit

Permalink
fix reliability rating
Browse files Browse the repository at this point in the history
  • Loading branch information
veenstrajelmer committed Sep 26, 2024
1 parent 600053d commit cc81209
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_download.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import dfm_tools as dfmt
import xarray as xr
import glob
import numpy as np


def get_cds_url_key():
Expand Down Expand Up @@ -171,7 +172,7 @@ def test_copernicusmarine_credentials():
def test_copernicusmarine_get_buffer_notfound():
dataset_id = 'cmems_obs-oc_glo_bgc-transp_my_l3-multi-4km_P1D'
buffer = copernicusmarine_get_buffer(dataset_id)
assert buffer == 0.5
assert np.isclose(buffer, 0.5)


@pytest.mark.requiressecrets
Expand Down

0 comments on commit cc81209

Please sign in to comment.