From 19d940e30b24f566eb8abb1f5d99f71387db652f Mon Sep 17 00:00:00 2001 From: Jeremy Kubica <104161096+jeremykubica@users.noreply.github.com> Date: Mon, 13 Mar 2023 10:52:35 -0400 Subject: [PATCH] Change single quotes to double quotes. --- .../test_example_module.py.jinja | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python-project-template/tests/{% if create_example_module %}{{module_name}}_tests{% endif %}/test_example_module.py.jinja b/python-project-template/tests/{% if create_example_module %}{{module_name}}_tests{% endif %}/test_example_module.py.jinja index 8f5cc3e66..dd77d2df 100644 --- a/python-project-template/tests/{% if create_example_module %}{{module_name}}_tests{% endif %}/test_example_module.py.jinja +++ b/python-project-template/tests/{% if create_example_module %}{{module_name}}_tests{% endif %}/test_example_module.py.jinja @@ -4,7 +4,7 @@ from {{module_name}} import example_module def test_greetings(): """Verify the output of the `greetings` function""" output = example_module.greetings() - assert output == 'Hello from LINCC-Frameworks!' + assert output == "Hello from LINCC-Frameworks!" def test_meaning():