From 6f31a26772e53da8397ea1d526800a024d1d1ede Mon Sep 17 00:00:00 2001 From: mike cullerton Date: Mon, 24 Jan 2022 11:06:01 -0500 Subject: [PATCH] Better description --- tests/workflow/test_workflow_missing_library.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/workflow/test_workflow_missing_library.py b/tests/workflow/test_workflow_missing_library.py index 76030b53..237e7f14 100644 --- a/tests/workflow/test_workflow_missing_library.py +++ b/tests/workflow/test_workflow_missing_library.py @@ -6,8 +6,8 @@ import json class TestMissingLibrary(BaseTest): def test_missing_library(self): - """We call a library that does not exist, and - test to see if our error service hint is in the error message.""" + """This workflow calls a library that does not exist, + we validate the workflow, and assert that our error service hint is in the error message.""" workflow = self.create_workflow('missing_library') rv = self.app.get('/v1.0/workflow-specification/%s/validate' % workflow.workflow_spec_id, headers=self.logged_in_headers()) json_data = json.loads(rv.get_data(as_text=True))