Skip to content

Commit

Permalink
Update Pulp 3 constant to be a tuple
Browse files Browse the repository at this point in the history
Update the constant `DOWNLOAD_POLICIES` to be a tuple.

See: #1157
  • Loading branch information
koliveir authored and Kersom committed Dec 17, 2018
1 parent 7049e8b commit ffea69e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pulp_smash/pulp3/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

DISTRIBUTION_PATH = urljoin(BASE_PATH, 'distributions/')

DOWNLOAD_POLICIES = ['immediate', 'on_demand', 'streamed']
DOWNLOAD_POLICIES = ('immediate', 'on_demand', 'streamed',)

JWT_PATH = urljoin(BASE_PATH, 'jwt/')

Expand Down

0 comments on commit ffea69e

Please sign in to comment.