diff options
| author | Max Nanis | 2026-08-18 13:14:45 -0700 |
|---|---|---|
| committer | Max Nanis | 2026-08-18 13:14:45 -0700 |
| commit | 6b4f8d6b8700a65bdf74beb3d95c969a81464a56 (patch) | |
| tree | 09c0b32c8915f4ffa5c5e02222c49cbf591f8588 /tests/models/thl/test_wall.py | |
| parent | c6f7ad8baaa8e0e22dfcefc763f4065faf6de507 (diff) | |
| download | generalresearch-6b4f8d6b8700a65bdf74beb3d95c969a81464a56.tar.gz generalresearch-6b4f8d6b8700a65bdf74beb3d95c969a81464a56.zip | |
build ignore, py-utils replace, typing with Ruff
Diffstat (limited to 'tests/models/thl/test_wall.py')
| -rw-r--r-- | tests/models/thl/test_wall.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/models/thl/test_wall.py b/tests/models/thl/test_wall.py index 057aad2..8398c81 100644 --- a/tests/models/thl/test_wall.py +++ b/tests/models/thl/test_wall.py @@ -1,4 +1,4 @@ -from datetime import datetime, timezone, timedelta +from datetime import datetime, timedelta, timezone from decimal import Decimal from uuid import uuid4 @@ -76,7 +76,7 @@ class TestWall: ) assert "If status is f, status_code_1 should be in" in str(e.value) - with pytest.raises(expected_exception=ValidationError) as cm: + with pytest.raises(expected_exception=ValidationError): Wall( user_id=1, source=Source.DYNATA, |
