mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-22 19:53:17 +00:00
Fix show studio test (#979)
This commit is contained in:
parent
2b960cf868
commit
ae78557931
1 changed files with 2 additions and 2 deletions
|
@ -730,7 +730,7 @@ def test_video_Show_attrs(show):
|
||||||
assert show.actors == show.roles
|
assert show.actors == show.roles
|
||||||
assert show._server._baseurl == utils.SERVER_BASEURL
|
assert show._server._baseurl == utils.SERVER_BASEURL
|
||||||
assert show.showOrdering in (None, 'aired')
|
assert show.showOrdering in (None, 'aired')
|
||||||
assert show.studio == "Revolution Sun Studios"
|
assert show.studio == "Generator Entertainment"
|
||||||
assert utils.is_string(show.summary, gte=100)
|
assert utils.is_string(show.summary, gte=100)
|
||||||
assert show.tagline == "Winter is coming."
|
assert show.tagline == "Winter is coming."
|
||||||
assert utils.is_metadata(show.theme, contains="/theme/")
|
assert utils.is_metadata(show.theme, contains="/theme/")
|
||||||
|
@ -956,7 +956,7 @@ def test_video_Season_attrs(show):
|
||||||
assert season.parentIndex == 1
|
assert season.parentIndex == 1
|
||||||
assert utils.is_metadata(season.parentKey)
|
assert utils.is_metadata(season.parentKey)
|
||||||
assert utils.is_int(season.parentRatingKey)
|
assert utils.is_int(season.parentRatingKey)
|
||||||
assert season.parentStudio == "Revolution Sun Studios"
|
assert season.parentStudio == "Generator Entertainment"
|
||||||
assert utils.is_metadata(season.parentTheme)
|
assert utils.is_metadata(season.parentTheme)
|
||||||
if season.parentThumb:
|
if season.parentThumb:
|
||||||
assert utils.is_thumb(season.parentThumb)
|
assert utils.is_thumb(season.parentThumb)
|
||||||
|
|
Loading…
Reference in a new issue