Skip to content

Commit be9f083

Browse files
authored
Merge branch 'main' into main
2 parents e5e31a9 + de939a8 commit be9f083

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/integration/test_iam.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import pytest
22

3+
from databricks.sdk import errors
34
from databricks.sdk.core import DatabricksError
45

56

@@ -13,7 +14,7 @@ def test_scim_error_unmarshall(w, random):
1314
with pytest.raises(DatabricksError) as exc_info:
1415
groups = w.groups.list(filter=random(12))
1516
next(groups)
16-
assert 'Given filter operator is not supported' in str(exc_info.value)
17+
assert isinstance(exc_info.value, errors.BadRequest)
1718

1819

1920
def test_scim_get_user_as_dict(w):

0 commit comments

Comments
 (0)