From f6ff31c9d4ea46884f0e81360d7c7ce5f11737d0 Mon Sep 17 00:00:00 2001 From: rdoerschel Date: Thu, 12 Oct 2023 15:54:42 +0200 Subject: [PATCH] Fix file extension Closes #24 --- anfema_django_testutils/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/anfema_django_testutils/__init__.py b/anfema_django_testutils/__init__.py index f1a65b2..387847b 100644 --- a/anfema_django_testutils/__init__.py +++ b/anfema_django_testutils/__init__.py @@ -1,9 +1,9 @@ """Collection of various django related test utilities.""" -__version__ = '0.6.0' +__version__ = "0.6.0" def load_tests(loader, tests, pattern): # Only consider tests within the tests folder. Otherwise the testcases module # produces conflicts with the standard pattern. - return loader.discover(f'{__path__[0]}/tests', top_level_dir=__path__[0]) + return loader.discover(f"{__path__[0]}/tests", top_level_dir=__path__[0])