diff --git a/src/databricks/labs/pytester/fixtures/plugin.py b/src/databricks/labs/pytester/fixtures/plugin.py index 86a84f8..7fcf89c 100644 --- a/src/databricks/labs/pytester/fixtures/plugin.py +++ b/src/databricks/labs/pytester/fixtures/plugin.py @@ -26,7 +26,7 @@ make_storage_credential, make_volume, ) -from databricks.labs.pytester.fixtures.notebooks import make_directory, make_workspace_file, make_notebook, make_repo +from databricks.labs.pytester.fixtures.workspace import make_directory, make_workspace_file, make_notebook, make_repo from databricks.labs.pytester.fixtures.permissions import ( # noqa make_cluster_policy_permissions, make_instance_pool_permissions, diff --git a/src/databricks/labs/pytester/fixtures/notebooks.py b/src/databricks/labs/pytester/fixtures/workspace.py similarity index 100% rename from src/databricks/labs/pytester/fixtures/notebooks.py rename to src/databricks/labs/pytester/fixtures/workspace.py diff --git a/tests/integration/fixtures/test_notebooks.py b/tests/integration/fixtures/test_workspace.py similarity index 100% rename from tests/integration/fixtures/test_notebooks.py rename to tests/integration/fixtures/test_workspace.py diff --git a/tests/unit/fixtures/test_notebooks.py b/tests/unit/fixtures/test_workspace.py similarity index 97% rename from tests/unit/fixtures/test_notebooks.py rename to tests/unit/fixtures/test_workspace.py index ee5ad13..e5cd39a 100644 --- a/tests/unit/fixtures/test_notebooks.py +++ b/tests/unit/fixtures/test_workspace.py @@ -2,7 +2,7 @@ from databricks.sdk.service.workspace import Language -from databricks.labs.pytester.fixtures.notebooks import make_directory, make_workspace_file, make_notebook, make_repo +from databricks.labs.pytester.fixtures.workspace import make_directory, make_workspace_file, make_notebook, make_repo from databricks.labs.pytester.fixtures.unwrap import call_stateful