1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-06-19 16:00:59 +03:00

Fix typo and copypasta

Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
This commit is contained in:
Gilles Peskine
2022-11-11 16:36:51 +01:00
parent 9e509fc316
commit 4711731455

View File

@ -682,12 +682,12 @@ exit:
@patch("generate_test_code.gen_dependencies")
@patch("generate_test_code.gen_function_wrapper")
@patch("generate_test_code.parse_function_arguments")
def test_functio_name_on_newline(self, parse_function_arguments_mock,
gen_function_wrapper_mock,
gen_dependencies_mock,
gen_dispatch_mock):
def test_function_name_on_newline(self, parse_function_arguments_mock,
gen_function_wrapper_mock,
gen_dependencies_mock,
gen_dispatch_mock):
"""
Test when exit label is present.
Test with line break before the function name.
:return:
"""
parse_function_arguments_mock.return_value = ([], '', [])