mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-25 21:20:18 +00:00
Fix episode attributes test year (#1103)
This commit is contained in:
parent
8b3235445f
commit
c6482481e5
1 changed files with 1 additions and 1 deletions
|
@ -1182,7 +1182,7 @@ def test_video_Episode_attrs(episode):
|
|||
assert episode.viewOffset == 0
|
||||
if episode.writers:
|
||||
assert "David Benioff" in [i.tag for i in episode.writers]
|
||||
assert episode.year is None
|
||||
assert episode.year == 2011
|
||||
assert episode.isPlayed in [True, False]
|
||||
assert len(episode.locations) == 1
|
||||
assert len(episode.locations[0]) >= 10
|
||||
|
|
Loading…
Reference in a new issue