File tree Expand file tree Collapse file tree 1 file changed +1
-12
lines changed Expand file tree Collapse file tree 1 file changed +1
-12
lines changed Original file line number Diff line number Diff line change 1
- import pytest
2
1
from dbt .tests .adapter .grants .test_incremental_grants import BaseIncrementalGrants
3
2
from dbt .tests .adapter .grants .test_invalid_grants import BaseInvalidGrants
4
3
from dbt .tests .adapter .grants .test_model_grants import BaseModelGrants
@@ -10,17 +9,7 @@ class TestIncrementalGrantsSQLServer(BaseIncrementalGrants):
10
9
pass
11
10
12
11
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 ):
24
13
def grantee_does_not_exist_error (self ):
25
14
return "Cannot find the user"
26
15
You can’t perform that action at this time.
0 commit comments