Skip to content

Commit

Permalink
Fix syntax error in use of random.choices
Browse files Browse the repository at this point in the history
  • Loading branch information
synkd committed Feb 28, 2024
1 parent 668d3b8 commit d095df5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_manifester.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
{
"uuid": SUB_ALLOCATION_UUID,
"name": f"{MANIFEST_DATA['username_prefix']}-"
+ "".join(random.choices(string.ascii_letters, 8)),
+ "".join(random.choices(string.ascii_letters, k=8)),
"type": "Satellite",
"version": f"{MANIFEST_DATA['sat_version']}",
"entitlementQuantity": sum(d["quantity"] for d in MANIFEST_DATA["subscription_data"]),
Expand Down

0 comments on commit d095df5

Please sign in to comment.