Skip to content

Commit

Permalink
Merge pull request #251 from UnitapApp/refactor/merge-party
Browse files Browse the repository at this point in the history
fix brightid connect url
  • Loading branch information
Bastin authored Jan 9, 2024
2 parents f7a136e + ed2e637 commit 9763c5c
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions faucet/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -383,10 +383,6 @@ def test_address_validator_evm(self):
response_1 = self.client.post(endpoint, data={"address": "0x132546"})
self.assertEqual(response_1.status_code, 400)

@patch(
"authentication.models.UserProfile.is_meet_verified",
lambda a: (True, None),
)
def test_get_last_claim_of_user(self):
endpoint = reverse("FAUCET:last-claim")

Expand Down Expand Up @@ -429,10 +425,6 @@ def test_get_last_claim_of_user(self):
self.assertEqual(claim_data["txHash"], last_claim.tx_hash)
self.assertEqual(claim_data["faucet"]["pk"], last_claim.faucet.pk)

@patch(
"authentication.models.UserProfile.is_meet_verified",
lambda a: (True, None),
)
def test_get_claim_list(self):
endpoint = reverse("FAUCET:claims")

Expand Down

0 comments on commit 9763c5c

Please sign in to comment.