Skip to content

Commit

Permalink
Fix movie year test
Browse files Browse the repository at this point in the history
  • Loading branch information
JonnyWong16 committed Sep 17, 2024
1 parent ddae933 commit 8547bdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_video.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def test_video_Movie_attrs(movies):
assert movie.userRating is None
assert movie.viewCount == 0
assert utils.is_int(movie.viewOffset, gte=0)
assert movie.year == 2009
assert movie.year >= 2008
# Audio
audio = movie.media[0].parts[0].audioStreams()[0]
if audio.audioChannelLayout:
Expand Down

0 comments on commit 8547bdb

Please sign in to comment.