Skip to content

Commit

Permalink
use old commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
jonmcfee03 committed Apr 25, 2024
1 parent 233ad83 commit 7a0ff1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django/db/backends/base/creation.py
Expand Up @@ -347,7 +347,7 @@ def mark_expected_failures_and_skips(self):
for reason, tests in self.connection.features.django_test_skips.items():
for test_name in tests:
test_case_name, _, test_method_name = test_name.rpartition(".")
if not test_method_name.startswith("test_"):
if not test_method_name.startswith("test"):
test_case_name = test_name
test_method_name = None
test_app = test_name.split(".")[0]
Expand Down

0 comments on commit 7a0ff1e

Please sign in to comment.