From 71c5ba859e326f49ba8e89fbe4cd980e31d7a7db Mon Sep 17 00:00:00 2001 From: Vincent Sarago Date: Tue, 3 Sep 2024 11:30:31 +0200 Subject: [PATCH] Update tests/test_io_xarray.py Co-authored-by: Jonas --- tests/test_io_xarray.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_io_xarray.py b/tests/test_io_xarray.py index a75c098a..cdefbd08 100644 --- a/tests/test_io_xarray.py +++ b/tests/test_io_xarray.py @@ -331,8 +331,8 @@ def test_xarray_reader_no_crs(): arr, dims=("time", "y", "x"), coords={ - "x": list(range(-170, 180, 10)), - "y": list(range(-80, 85, 5)), + "x": numpy.arange(-170, 180, 10), + "y": numpy.arange(-80, 85, 5), "time": [datetime(2022, 1, 1)], }, )