Skip to content

Commit

Permalink
Fix subscription problem.
Browse files Browse the repository at this point in the history
  • Loading branch information
markpbaggett committed Dec 4, 2024
1 parent aeb6e92 commit 8db7358
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/test_add_thumbnail.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,5 @@ def test_create_thumbnail_from_iiif_v3(self, mockrequest_get):
self.assertEqual(thumbnail.id, "https://fixtures.iiif.io/other/level0/Glen/photos/gottingen/full/504,378/0/default.jpg")

# check thumbnail service
service = thumbnail.service[0]
self.assertEqual(service['profile'], "level0")
self.assertEqual(service['type'], "ImageService3")
self.assertEqual(thumbnail.service[0].profile, "level0")
self.assertEqual(thumbnail.service[0].type, "ImageService3")

0 comments on commit 8db7358

Please sign in to comment.