From c3c37092df0cfdfb73bbab7e4a378654e64f3f05 Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Tue, 18 Aug 2020 10:05:09 +0200 Subject: [PATCH] Fix test data --- articles/tests/conftest.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/articles/tests/conftest.py b/articles/tests/conftest.py index 8c4aa03..3c79cf3 100644 --- a/articles/tests/conftest.py +++ b/articles/tests/conftest.py @@ -18,8 +18,8 @@ def published_article(author): status=Article.PUBLISHED, author=author, published_at=timezone.now(), - slug="some-slug", - content="# some markdown\n\n[a link](https://example.com)", + slug="some-article-slug", + content="## some article markdown\n\n[an article link](https://article.com)", ) @@ -31,6 +31,6 @@ def published_page(author): status=Article.PUBLISHED, author=author, published_at=timezone.now(), - slug="some-slug", - content="# some markdown\n\n[a link](https://example.com)", + slug="some-page-slug", + content="## some page markdown\n\n[a page link](https://page.com)", )