Skip to content

Commit

Permalink
github test coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
BernhardKoschicek committed Oct 13, 2023
1 parent 2bd5b31 commit e24ef81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -761,10 +761,10 @@ def test_api(self) -> None:

# Image Endpoints
rv = self.app.get(url_for('api_03.licensed_file_overview'))
assert '152' in rv.get_json()
assert bool(len(rv.get_json().keys()) == 3)
rv = self.app.get(url_for(
'api_03.licensed_file_overview', file_id='154'))
assert '154' in rv.get_json()
assert bool(len(rv.get_json().keys()) == 1)

# Test Error Handling
for rv in [
Expand Down

0 comments on commit e24ef81

Please sign in to comment.