Skip to content

Commit

Permalink
make lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ahiuchingau committed Apr 12, 2024
1 parent 9b02831 commit 2728cca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions robot-server/tests/errors/test_exception_handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,15 +161,15 @@ def create_item(item: Item) -> Item:
"id": "InvalidRequest",
"title": "Invalid Request",
"detail": "Input should be a valid integer, unable to parse "
"string as an integer",
"string as an integer",
"source": {"pointer": "/int_field"},
},
{
"errorCode": "4000",
"id": "InvalidRequest",
"title": "Invalid Request",
"detail": "Input should be a valid boolean, unable to interpret "
"input",
"input",
"source": {"pointer": "/array_field/0"},
},
]
Expand All @@ -193,7 +193,7 @@ def get_item(count: int) -> Item:
"id": "InvalidRequest",
"title": "Invalid Request",
"detail": "Input should be a valid integer, unable to parse "
"string as an integer",
"string as an integer",
"source": {"parameter": "count"},
},
]
Expand Down

0 comments on commit 2728cca

Please sign in to comment.