Skip to content

Commit

Permalink
removed unneeded driver import
Browse files Browse the repository at this point in the history
  • Loading branch information
antonhibl committed Jan 31, 2024
1 parent e30928d commit 1fc0f64
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tests/pytests/test_pvl_load.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
import os
import json

from ale.drivers.clementine_drivers import ClementineIsisLabelNaifSpiceDriver

from conftest import get_image_kernels, convert_kernels, get_image_label

@pytest.fixture
Expand All @@ -16,10 +14,9 @@ def test_load_kernels():
for kern in binary_kerns:
os.remove(kern)


def test_pvl_load(test_load_kernels):
cube_label = get_image_label('LUA3107H.161', "isis3")
cube_pvl_obj = pvl.load(cube_label)
isd = ale.loads(cube_pvl_obj, props={'kernels': test_load_kernels, 'exact_ck_times': False}, only_naif_spice=True, verbose=True)
isd_obj = json.loads(isd)
return isd_obj
return isd_obj

0 comments on commit 1fc0f64

Please sign in to comment.