Skip to content

Commit

Permalink
Fix style error in test_set_workflow_menu
Browse files Browse the repository at this point in the history
  • Loading branch information
heisner-tillman committed Mar 21, 2024
1 parent 2432b9d commit 8220798
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy_test/api/test_workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -874,7 +874,7 @@ def test_set_workflow_menu(self):
upload_response = self.__test_upload(workflow=workflow_object, name=original_name)
workflow = upload_response.json()
workflow_id = workflow["id"]
response = self._put(f"/api/workflows/menu", {"workflow_ids": workflow_id}, json=True)
response = self._put("/api/workflows/menu", {"workflow_ids": workflow_id}, json=True)
self._assert_status_code_is(response, 200)

def test_update_name(self):
Expand Down

0 comments on commit 8220798

Please sign in to comment.