Skip to content

Commit

Permalink
Linting fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed Mar 27, 2024
1 parent 7989947 commit 383057d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/data/test_quota.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def test_calculate_objectstore_usage(self):
usage = u.dictify_objectstore_usage()
assert len(usage) == 2

usage_dict = dict([(u.object_store_id, u.total_disk_usage) for u in usage])
usage_dict = {u.object_store_id: u.total_disk_usage for u in usage}
assert int(usage_dict["not_tracked"]) == 10
assert int(usage_dict["tracked"]) == 15

Expand Down

0 comments on commit 383057d

Please sign in to comment.