test name update

This commit is contained in:
blacktwin 2019-09-05 08:58:13 -04:00 committed by GitHub
parent df546046d8
commit 1d5d119d4c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -202,37 +202,37 @@ def test_library_and_section_search_for_movie(plex):
assert l_search == s_search
def test_library_colletion_hide(collection):
def test_library_Colletions_modeUpdate_hide(collection):
collection.modeUpdate(mode='hide')
collection.reload()
assert collection.collectionMode == '0'
def test_library_colletion_default(collection):
def test_library_Colletions_modeUpdate_default(collection):
collection.modeUpdate(mode='default')
collection.reload()
assert collection.collectionMode == '-2'
def test_library_colletion_hideItems(collection):
def test_library_Colletions_modeUpdate_hideItems(collection):
collection.modeUpdate(mode='hideItems')
collection.reload()
assert collection.collectionMode == '1'
def test_library_colletion_showItems(collection):
def test_library_Colletions_modeUpdate_showItems(collection):
collection.modeUpdate(mode='showItems')
collection.reload()
assert collection.collectionMode == '2'
def test_library_colletion_sortAlpha(collection):
def test_library_Colletions_sortAlpha(collection):
collection.sortUpdate(mode='alpha')
collection.reload()
assert collection.collectionMode == '1'
def test_library_colletion_sortRelease(collection):
def test_library_Colletions_sortRelease(collection):
collection.sortUpdate(mode='release')
collection.reload()
assert collection.collectionMode == '0'