Skip to content

Commit

Permalink
Testing: Fix min. version
Browse files Browse the repository at this point in the history
  • Loading branch information
shahramn committed Sep 12, 2024
1 parent cd47a8c commit bb54b74
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_eccodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def test_codes_samples_path():


def test_codes_set_debug():
if eccodes.codes_get_api_version(int) < 23700:
if eccodes.codes_get_api_version(int) < 23800:
pytest.skip("ecCodes version too old")
eccodes.codes_set_debug(-1)
eccodes.codes_set_debug(0)
Expand Down Expand Up @@ -81,7 +81,7 @@ def test_version_info():


def test_codes_get_features():
if eccodes.codes_get_api_version(int) < 23700:
if eccodes.codes_get_api_version(int) < 23800:
pytest.skip("ecCodes version too old")

features = eccodes.codes_get_features(eccodes.CODES_FEATURES_ALL)
Expand Down

0 comments on commit bb54b74

Please sign in to comment.