Skip to content

Commit 7759e31

Browse files
committed
try with cannot find the user again
1 parent 02cd72d commit 7759e31

File tree

1 file changed

+1
-12
lines changed

1 file changed

+1
-12
lines changed

tests/functional/adapter/test_grants.py

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import pytest
21
from dbt.tests.adapter.grants.test_incremental_grants import BaseIncrementalGrants
32
from dbt.tests.adapter.grants.test_invalid_grants import BaseInvalidGrants
43
from dbt.tests.adapter.grants.test_model_grants import BaseModelGrants
@@ -10,17 +9,7 @@ class TestIncrementalGrantsSQLServer(BaseIncrementalGrants):
109
pass
1110

1211

13-
@pytest.mark.skip_profile("ci_sql_server", "user")
14-
class TestInvalidGrantsSQLServerAzure(BaseInvalidGrants):
15-
def grantee_does_not_exist_error(self):
16-
return "could not be found or this principal type is not supported"
17-
18-
def privilege_does_not_exist_error(self):
19-
return "Incorrect syntax near"
20-
21-
22-
@pytest.mark.only_with_profile("ci_sql_server", "user")
23-
class TestInvalidGrantsSQLServerOnPrem(BaseInvalidGrants):
12+
class TestInvalidGrantsSQLServer(BaseInvalidGrants):
2413
def grantee_does_not_exist_error(self):
2514
return "Cannot find the user"
2615

0 commit comments

Comments
 (0)