From ee0289382c43a9e4c187d75cf04b1419d6d49a4e Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Mon, 24 Aug 2020 23:49:35 +0200 Subject: [PATCH] Fix test data --- articles/tests/conftest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/articles/tests/conftest.py b/articles/tests/conftest.py index 3c79cf3..2113651 100644 --- a/articles/tests/conftest.py +++ b/articles/tests/conftest.py @@ -14,7 +14,7 @@ def author(): @pytest.mark.django_db def published_article(author): return Article.objects.create( - title="Some interesting title", + title="Some interesting article title", status=Article.PUBLISHED, author=author, published_at=timezone.now(), @@ -27,7 +27,7 @@ def published_article(author): @pytest.mark.django_db def published_page(author): return Page.objects.create( - title="Some interesting title", + title="Some interesting page title", status=Article.PUBLISHED, author=author, published_at=timezone.now(),