Skip to content

Commit

Permalink
fix syntax error
Browse files Browse the repository at this point in the history
Signed-off-by: Huong Nguyen <[email protected]>
  • Loading branch information
Huong Nguyen committed Jan 17, 2025
1 parent 90feefe commit 44117eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package/tests/test_api/test_rest/test_router.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,9 @@ def test_version(client):

json_response = response.json()
assert "installed" in json_response
assert "is_outdated " in json_response
assert "is_outdated" in json_response
assert "latest" in json_response

assert isinstance(json_response["installed"], str)
assert isinstance(json_response["is_outdated "], bool)
assert isinstance(json_response["is_outdated"], bool)
assert isinstance(json_response["latest"], str)

0 comments on commit 44117eb

Please sign in to comment.