Skip to content

Commit

Permalink
Fix stuff from pre-commit run --all
Browse files Browse the repository at this point in the history
  • Loading branch information
TheByronHimes authored and TheByronHimes committed Oct 12, 2023
1 parent 585fcc9 commit b94021c
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tests/test_validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ class ExampleSchema(BaseModel):

def test_happy():
"""Test successful payload validation using a schema."""

payload = {"some_param": "test", "another_param": 1234}

validated_payload = get_validated_payload(payload=payload, schema=ExampleSchema)
Expand All @@ -45,7 +44,6 @@ def test_happy():

def test_failure():
"""Test failed payload validation using a schema."""

payload = {"some_param": "test", "another_param": "test"}

with pytest.raises(EventSchemaValidationError):
Expand Down

0 comments on commit b94021c

Please sign in to comment.