Skip to content

Commit

Permalink
Give error message a better message
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelboulton committed Jan 6, 2024
1 parent da68334 commit 261b7a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tavern/_core/plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ def get_request_type(
)
elif not list(set(keys) & set(stage)):
raise exceptions.MissingKeysError(
f"Need to specify one of '{set(keys.keys())}'"
f"Need to specify one of valid request types: '{set(keys.keys())}'"
)

# We've validated that 1 and only 1 is there, so just loop until the first
Expand Down

0 comments on commit 261b7a9

Please sign in to comment.