Skip to content

Commit

Permalink
Update error msg in test
Browse files Browse the repository at this point in the history
  • Loading branch information
svlandeg committed Jul 24, 2024
1 parent 1793f0f commit ae11002
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_others.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ def main(names: typing.List[str] = typer.Option(..., separator="\t \n")):
runner.invoke(app, [])
assert (
str(exc_info.value)
== "Error in definition of Option 'names'. Separator \"\t \n\" is not supported for multiple value splitting."
== "Error in definition of Option 'names'. Only single-character non-whitespace separators are supported, but got \"\t \n\"."
)


Expand Down

0 comments on commit ae11002

Please sign in to comment.