mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-10 06:04:15 +00:00
Fix movie edition tests (#1196)
This commit is contained in:
parent
9ede493f4c
commit
4f4f60a584
1 changed files with 5 additions and 1 deletions
|
@ -669,12 +669,16 @@ def test_video_Movie_mixins_fields(movie):
|
|||
test_mixins.edit_tagline(movie)
|
||||
test_mixins.edit_title(movie)
|
||||
test_mixins.edit_user_rating(movie)
|
||||
|
||||
|
||||
@pytest.mark.anonymous
|
||||
def test_video_Movie_mixins_fields_edition(movie):
|
||||
with pytest.raises(BadRequest):
|
||||
test_mixins.edit_edition_title(movie)
|
||||
|
||||
|
||||
@pytest.mark.authenticated
|
||||
def test_video_Movie_mixins_fields_edition(movie):
|
||||
def test_video_Movie_mixins_fields_edition_authenticated(movie):
|
||||
test_mixins.edit_edition_title(movie)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue