Skip to content

Commit 1d5d119

Browse files
authored
test name update
1 parent df54604 commit 1d5d119

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tests/test_library.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -202,37 +202,37 @@ def test_library_and_section_search_for_movie(plex):
202202
assert l_search == s_search
203203

204204

205-
def test_library_colletion_hide(collection):
205+
def test_library_Colletions_modeUpdate_hide(collection):
206206
collection.modeUpdate(mode='hide')
207207
collection.reload()
208208
assert collection.collectionMode == '0'
209209

210210

211-
def test_library_colletion_default(collection):
211+
def test_library_Colletions_modeUpdate_default(collection):
212212
collection.modeUpdate(mode='default')
213213
collection.reload()
214214
assert collection.collectionMode == '-2'
215215

216216

217-
def test_library_colletion_hideItems(collection):
217+
def test_library_Colletions_modeUpdate_hideItems(collection):
218218
collection.modeUpdate(mode='hideItems')
219219
collection.reload()
220220
assert collection.collectionMode == '1'
221221

222222

223-
def test_library_colletion_showItems(collection):
223+
def test_library_Colletions_modeUpdate_showItems(collection):
224224
collection.modeUpdate(mode='showItems')
225225
collection.reload()
226226
assert collection.collectionMode == '2'
227227

228228

229-
def test_library_colletion_sortAlpha(collection):
229+
def test_library_Colletions_sortAlpha(collection):
230230
collection.sortUpdate(mode='alpha')
231231
collection.reload()
232232
assert collection.collectionMode == '1'
233233

234234

235-
def test_library_colletion_sortRelease(collection):
235+
def test_library_Colletions_sortRelease(collection):
236236
collection.sortUpdate(mode='release')
237237
collection.reload()
238238
assert collection.collectionMode == '0'

0 commit comments

Comments
 (0)