Skip to content

Commit 30f9a5d

Browse files
committed
Fix imports
1 parent 578fba2 commit 30f9a5d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

intake/catalog/tests/test_local.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
from intake import open_catalog
1818
from intake.catalog import exceptions, local
1919
from intake.catalog.local import LocalCatalogEntry, UserParameter, get_dir
20+
from intake.tests.test_utils import copy_test_file
2021
from intake.utils import make_path_posix
2122

2223
from .util import assert_items_equal
@@ -771,7 +772,7 @@ def inherit_params_cat():
771772
with tempfile.TemporaryDirectory() as tmp_dir:
772773
tmp_path = posixpath.join(tmp_dir, "intake")
773774
target_catalog = copy_test_file("catalog_inherit_params.yml", tmp_path)
774-
return intake.open_catalog(target_catalog)
775+
return open_catalog(target_catalog)
775776

776777

777778
def test_inherit_params(inherit_params_cat):

0 commit comments

Comments
 (0)