Skip to content

Commit d258629

Browse files
committed
Add missing fixture to test
1 parent 2a0fbd0 commit d258629

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integration/hive_metastore/test_grant_detail.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from databricks.sdk.errors import NotFound
99
from databricks.sdk.retries import retried
1010

11-
from databricks.labs.ucx.hive_metastore.grants import Grant, GrantsCrawler
11+
from databricks.labs.ucx.hive_metastore.grants import Grant
1212
from databricks.labs.ucx.install import deploy_schema
1313

1414
from ..conftest import MockRuntimeContext
@@ -102,7 +102,7 @@ def grants_contain_select_action(grants: Iterable[Grant]) -> bool:
102102

103103

104104
@retried(on=[NotFound, TimeoutError], timeout=dt.timedelta(minutes=3))
105-
def test_grant_findings(runtime_ctx: MockRuntimeContext, _deployed_schema: None) -> None:
105+
def test_grant_findings(runtime_ctx: MockRuntimeContext, sql_backend_tacl: SqlBackend, _deployed_schema: None) -> None:
106106
"""Test that findings are reported for a grant."""
107107

108108
# Fixture: two objects, one with a grant that is okay and the other with a grant that is not okay.

0 commit comments

Comments
 (0)