We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60d12ac commit 2c19e16Copy full SHA for 2c19e16
lib/galaxy_test/api/test_workflows.py
@@ -1192,6 +1192,8 @@ def test_import_export_dynamic(self):
1192
# do the raw re-import as a regular user we expect a 403 error.
1193
response = self.workflow_populator.create_workflow_response(downloaded_workflow)
1194
self._assert_status_code_is(response, 403)
1195
+ response_dict = response.json()
1196
+ assert response_dict["err_msg"] == "Only admin users can create tools dynamically."
1197
1198
def test_import_annotations(self):
1199
workflow_id = self.workflow_populator.simple_workflow("test_import_annotations", publish=True)
0 commit comments