Skip to content

Commit ac52968

Browse files
committed
remove Aurora Testnet support
1 parent 8caaf37 commit ac52968

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

packages/examples/cvat/exchange-oracle/tests/api/test_webhook_api.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ def test_incoming_webhook_200(client: TestClient) -> None:
3434

3535
assert response.status_code == 200
3636

37-
db_query = select(Webhook).where(Webhook.escrow_address == escrow_address)
37+
db_query = select(Webhook).where(
38+
Webhook.escrow_address == escrow_address)
3839
webhook = session.execute(db_query).scalars().first()
3940
assert response.json() == {"id": webhook.id}
4041

@@ -116,7 +117,7 @@ def test_incoming_webhook_400_invalid_chain_id(client: TestClient) -> None:
116117
"errors": [
117118
{
118119
"field": "chain_id",
119-
"message": "Input should be 137, 80002, 1313161555 or 1338",
120+
"message": "Input should be 137, 80002 or 1338",
120121
}
121122
]
122123
}

0 commit comments

Comments
 (0)