Skip to content

Commit

Permalink
Huh...
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed Sep 10, 2024
1 parent 6b7ec05 commit 6fbaed0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/galaxy_test/base/populators.py
Original file line number Diff line number Diff line change
Expand Up @@ -2212,8 +2212,8 @@ def setup_workflow_run(
if inputs_by == "step_uuid":
workflow_request["inputs_by"] = "step_uuid"
elif inputs_by == "url":
input_b64_1 = base64.b64encode("1 2 3".encode("utf-8")).decode("utf-8")
input_b64_2 = base64.b64encode("4 5 6".encode("utf-8")).decode("utf-8")
input_b64_1 = base64.b64encode("1 2 3").decode("utf-8")
input_b64_2 = base64.b64encode("4 5 6").decode("utf-8")
inputs = {
"WorkflowInput1": {"src": "url", "url": f"base64://{input_b64_1}", "ext": "txt"},
"WorkflowInput2": {"src": "url", "url": f"base64://{input_b64_2}", "ext": "txt"},
Expand Down

0 comments on commit 6fbaed0

Please sign in to comment.