Skip to content

Commit

Permalink
Fixes lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
mrharpo committed Dec 30, 2023
1 parent 30fe502 commit bc4ad24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_otto.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ def test_get_templates():
'application/json' in response.headers['content-type']
), 'Content-Type is not JSON'
templates = response.json()
assert type(templates) is list, 'Type of response is not List'
assert isinstance(templates, list), 'Type of response is not List'
assert len(templates) > 0, 'Templates list is empty!'

0 comments on commit bc4ad24

Please sign in to comment.