Skip to content

Commit 61f49f5

Browse files
committed
Capitalize collection name in tests
1 parent 71e7ee2 commit 61f49f5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/conftest.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -234,11 +234,11 @@ def movie(movies):
234234
@pytest.fixture()
235235
def collection(movies):
236236
try:
237-
return movies.collections(title="marvel")[0]
237+
return movies.collections(title="Marvel")[0]
238238
except IndexError:
239239
movie = movies.get("Elephants Dream")
240-
movie.addCollection("marvel")
241-
return movies.collections(title="marvel")[0]
240+
movie.addCollection("Marvel")
241+
return movies.collections(title="Marvel")[0]
242242

243243

244244
@pytest.fixture()

0 commit comments

Comments
 (0)