Skip to content

Commit

Permalink
Fix file extension
Browse files Browse the repository at this point in the history
Closes #24
  • Loading branch information
RoTranDo committed Oct 12, 2023
1 parent fe69f2e commit f6ff31c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions anfema_django_testutils/__init__.py
Original file line number Diff line number Diff line change
@@ -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])

0 comments on commit f6ff31c

Please sign in to comment.