Skip to content

Commit 3b9300d

Browse files
committed
@sanderegg review: back to 2024 :-)
1 parent b31b233 commit 3b9300d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

services/api-server/tests/unit/_with_db/test_product.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ async def test_product_webserver(
3333
assert client
3434

3535
wallet_to_api_keys_map: dict[int, ApiKeyInDB] = {}
36-
wid: int = faker.pyint(min_value=1)
36+
_wallet_id = faker.pyint(min_value=1)
3737
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
38+
_wallet_id += faker.pyint(min_value=1)
39+
wallet_to_api_keys_map[_wallet_id] = api_key
4040

4141
def _check_key_product_compatibility(request: httpx.Request, **kwargs):
4242
assert (

0 commit comments

Comments
 (0)