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():