Skip to content

Commit

Permalink
Merge branch 'develop' into feature/iiif
Browse files Browse the repository at this point in the history
  • Loading branch information
BernhardKoschicek committed Oct 18, 2023
2 parents 3cb1f71 + e24ef81 commit 6fd7ac5
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 6fd7ac5

Please sign in to comment.