From bb241054cf6e22a79e03c8f33a785bcadc1f2f58 Mon Sep 17 00:00:00 2001 From: Callum Rollo Date: Wed, 22 Feb 2023 09:33:01 +0100 Subject: [PATCH] rename interpolation yaml --- tests/test_pyglider.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_pyglider.py b/tests/test_pyglider.py index ebf8939..e5663ca 100644 --- a/tests/test_pyglider.py +++ b/tests/test_pyglider.py @@ -127,7 +127,7 @@ def test_example_seaexplorer_metadata_raw(): # Test that interpolation over nans in raw data results in a greater or equal number of non-nan values with open(deploymentyaml_raw) as fin: deployment_raw = yaml.safe_load(fin) -interp_yaml = str(example_dir / 'example-seaexplorer-raw/deploymentRealtimeInterp.yml') +interp_yaml = str(example_dir / 'example-seaexplorer-raw/deploymentDelayedInterp.yml') deployment_raw['netcdf_variables']["interpolate"] = True with open(interp_yaml, "w") as fout: yaml.dump(deployment_raw, fout)