From 57fa2485334be95eb5e8e65b0c383f59b75ba89e Mon Sep 17 00:00:00 2001 From: acpaquette <acp263@nau.edu> Date: Mon, 20 Mar 2023 13:41:24 -0700 Subject: [PATCH] Changed env var monkey patch from ISIS3DATA to ISISDATA --- tests/pytests/test_util.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/pytests/test_util.py b/tests/pytests/test_util.py index 50c0590..68733dc 100644 --- a/tests/pytests/test_util.py +++ b/tests/pytests/test_util.py @@ -164,7 +164,7 @@ def test_kernel_from_cube_list(cube_kernels): def test_kernel_from_cube_list_expanded(monkeypatch, tmpdir, pvl_four_group, cube_kernels): monkeypatch.setenv('ISISROOT', str(tmpdir)) - monkeypatch.setenv('ISIS3DATA', '/test/path') + monkeypatch.setenv('ISISDATA', '/test/path') with open(tmpdir.join('IsisPreferences'), 'w+') as pvl_isisroot_file: pvl_isisroot_file.write(pvl_four_group) @@ -185,7 +185,7 @@ def test_kernel_from_cube_dict(cube_kernels): def test_kernel_from_cube_dict_expanded(monkeypatch, tmpdir, pvl_four_group, cube_kernels): monkeypatch.setenv('ISISROOT', str(tmpdir)) - monkeypatch.setenv('ISIS3DATA', '/test/path') + monkeypatch.setenv('ISISDATA', '/test/path') with open(tmpdir.join('IsisPreferences'), 'w+') as pvl_isisroot_file: pvl_isisroot_file.write(pvl_four_group) -- GitLab