We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8840d5 commit dafdfe3Copy full SHA for dafdfe3
1 file changed
scim2_tester/checkers/resource_delete.py
@@ -1,5 +1,6 @@
1
from typing import Any
2
3
+from scim2_client import SCIMClientError
4
from scim2_models import Resource
5
6
from ..utils import CheckContext
@@ -47,7 +48,7 @@ def object_deletion(
47
48
reason=f"{model.__name__} object with id {test_obj.id} still exists after deletion",
49
)
50
]
- except Exception:
51
+ except SCIMClientError:
52
pass
53
54
return [
0 commit comments