We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b31b233 commit 3b9300dCopy full SHA for 3b9300d
services/api-server/tests/unit/_with_db/test_product.py
@@ -33,10 +33,10 @@ async def test_product_webserver(
33
assert client
34
35
wallet_to_api_keys_map: dict[int, ApiKeyInDB] = {}
36
- wid: int = faker.pyint(min_value=1)
+ _wallet_id = faker.pyint(min_value=1)
37
async for api_key in create_fake_api_keys(2):
38
- wid += faker.pyint(min_value=1)
39
- wallet_to_api_keys_map[wid] = api_key
+ _wallet_id += faker.pyint(min_value=1)
+ wallet_to_api_keys_map[_wallet_id] = api_key
40
41
def _check_key_product_compatibility(request: httpx.Request, **kwargs):
42
assert (
0 commit comments