diff --git a/tests/test_albums.py b/tests/test_albums.py index d8a7244..53ff7e9 100644 --- a/tests/test_albums.py +++ b/tests/test_albums.py @@ -56,7 +56,7 @@ class TestAlbums(test_base.TestBase): self.assertFalse(hasattr(album, "photos")) # Get the photos in the album using the Album object directly - album.view() + album.view(includeElements=True) # Make sure all photos are in the album for photo in self.photos: self.assertIn(photo.id, [p.id for p in album.photos])