Skip to content

Commit

Permalink
TESTS: fix issue reported by 'black'
Browse files Browse the repository at this point in the history
Reviewed-by: Alejandro López <[email protected]>
Reviewed-by: Pavel Březina <[email protected]>
(cherry picked from commit 003c699)

Reviewed-by: Pavel Březina <[email protected]>
  • Loading branch information
alexey-tikhonov committed Feb 7, 2025
1 parent 6aba9a7 commit 3bd7461
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tests/system/tests/test_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ def test_cache__entries_are_refreshed_as_configured(client: Client, provider: LD
for k, v in result.items():
for y in v.items():
if y[0] == "lastUpdate":
last_update = last_update + [(int(y[1][0]))]
last_update = last_update + [int(y[1][0])]
if y[0] == "dataExpireTimestamp":
expire_time = expire_time + [(int(y[1][0]))]
expire_time = expire_time + [int(y[1][0])]

for m, n in enumerate(last_update):
assert (
Expand Down

0 comments on commit 3bd7461

Please sign in to comment.