Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahwooders committed Oct 15, 2024
1 parent 0d04a57 commit 339ea01
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_schema_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,14 @@ def test_schema_generator():

# Check that missing types results in an error
try:
_ = generate_schema(send_message_missing_types)
_ = generate_schema(send_message_missing_types, terminal=True)
assert False
except:
pass

# Check that missing docstring results in an error
try:
_ = generate_schema(send_message_missing_docstring)
_ = generate_schema(send_message_missing_docstring, terminal=True)
assert False
except:
pass

0 comments on commit 339ea01

Please sign in to comment.