Skip to content

Commit

Permalink
fix brightid connect url
Browse files Browse the repository at this point in the history
  • Loading branch information
Mohamad Bastin committed Jan 9, 2024
1 parent 1fec8f2 commit ed2e637
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 ed2e637

Please sign in to comment.