Skip to content

Commit

Permalink
fix(tests): typo in test names
Browse files Browse the repository at this point in the history
  • Loading branch information
thekaveman committed Aug 15, 2023
1 parent 0b2dc06 commit 9770c68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/pytest/core/test_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ def test_model_AuthProvider_without_verification(model_AuthProvider_without_veri


@pytest.mark.django_db
def model_AuthProvider_without_verification_no_sign_out(model_AuthProvider_without_verification_no_sign_out):
def test_model_AuthProvider_without_verification_no_sign_out(model_AuthProvider_without_verification_no_sign_out):
assert not model_AuthProvider_without_verification_no_sign_out.supports_claims_verification
assert not model_AuthProvider_without_verification_no_sign_out.supports_sign_out


@pytest.mark.django_db
def test_test_EligibilityType_str(model_EligibilityType):
def test_model_EligibilityType_str(model_EligibilityType):
assert str(model_EligibilityType) == model_EligibilityType.label


Expand Down

0 comments on commit 9770c68

Please sign in to comment.