From a9aa3fac89f23407e0331b45b7ef80c5604191ce Mon Sep 17 00:00:00 2001 From: mike cullerton Date: Wed, 20 Oct 2021 13:40:44 -0400 Subject: [PATCH] Renamed tests for clarification --- tests/test_jinja_service.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_jinja_service.py b/tests/test_jinja_service.py index 0c17689e..033d923b 100644 --- a/tests/test_jinja_service.py +++ b/tests/test_jinja_service.py @@ -9,7 +9,7 @@ import json class TestJinjaService(BaseTest): - def test_jinja_service_documentation(self): + def test_jinja_service_element_documentation(self): self.load_example_data() workflow = self.create_workflow('random_fact') processor = WorkflowProcessor(workflow) @@ -41,7 +41,7 @@ class TestJinjaService(BaseTest): print(f'test_jinja_service_email: {workflow_api.next_task.data}') - def test_jinja_service_tools(self): + def test_jinja_service_tools_markdown(self): template = "This is my template. {% include 'include_me' %} Was something included?" data = {"name": "World", "include_me": "Hello {{name}}!"}