From 6f42238a21b2f2db0b9051fe94655554fd22df44 Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Thu, 26 Nov 2020 12:43:41 +0100 Subject: [PATCH] Test successfully fail, reverting the previous commit. Revert "Introduce a fake test to check if test fail" This reverts commit 61ed0488 --- articles/tests/test_articles.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/articles/tests/test_articles.py b/articles/tests/test_articles.py index 21f3e7d..155a098 100644 --- a/articles/tests/test_articles.py +++ b/articles/tests/test_articles.py @@ -6,10 +6,6 @@ from model_bakery import baker from articles.models import Article, Page, User -def test_false(): - assert False - - @pytest.mark.django_db def test_can_access_list( client: Client, published_article: Article, published_page: Page