Skip to content

Commit b8ca9f0

Browse files
committed
chore: dependency update
1 parent ce1ff31 commit b8ca9f0

File tree

3 files changed

+290
-268
lines changed

3 files changed

+290
-268
lines changed

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
repos:
33
- repo: https://github.com/astral-sh/ruff-pre-commit
4-
rev: 'v0.14.0'
4+
rev: 'v0.15.1'
55
hooks:
66
- id: ruff-check
77
args: [--fix, --exit-non-zero-on-fix]
@@ -16,7 +16,7 @@ repos:
1616
exclude: "\\.svg$|\\.map$|\\.min\\.css$|\\.min\\.js$|\\.po$|\\.pot$"
1717
- id: check-toml
1818
- repo: https://github.com/pre-commit/mirrors-mypy
19-
rev: v1.18.2
19+
rev: v1.19.1
2020
hooks:
2121
- id: mypy
2222
additional_dependencies: [pydantic]

tests/test_network.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,7 @@ def test_bad_authentication(httpserver):
4242
results = _schemas_endpoint(context)
4343

4444
assert results[0].status == Status.ERROR
45-
assert (
46-
results[0].reason
47-
== "The server returned a SCIM Error object: Authentication is needed"
48-
)
45+
assert "Authentication is needed" in results[0].reason
4946

5047

5148
def test_bad_content_type(httpserver):

0 commit comments

Comments
 (0)