From 6b0ff33fce409e3bbc7b8b619c239782cd578475 Mon Sep 17 00:00:00 2001 From: Ashley Barnes <53282288+ashjbarnes@users.noreply.github.com> Date: Mon, 4 Sep 2023 14:01:52 +1000 Subject: [PATCH] Update tests/test_grid_generation.py Co-authored-by: Navid C. Constantinou --- tests/test_grid_generation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_grid_generation.py b/tests/test_grid_generation.py index 3fa2ab25..9a542fa1 100644 --- a/tests/test_grid_generation.py +++ b/tests/test_grid_generation.py @@ -23,7 +23,7 @@ def test_angle_between(v1, v2, v3, true_angle): @pytest.mark.parametrize( ("lat", "lon", "true_area"), [ - (Y, X, 0.5 * np.pi), + (lat, lon, 0.5 * np.pi), ], ) def test_quad_area(lat, lon, true_area):