From 9afe63b77aba5013dd837b576b1caba302350a92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Fri, 10 Apr 2020 23:43:27 +0200 Subject: [PATCH] tests: fix name of tests --- tests/unit/core/test-core-calc.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit/core/test-core-calc.cpp b/tests/unit/core/test-core-calc.cpp index e44c9faf9..da6e35aab 100644 --- a/tests/unit/core/test-core-calc.cpp +++ b/tests/unit/core/test-core-calc.cpp @@ -129,7 +129,7 @@ TEST(CoreCalc, PopValue) * calc_operation */ -TEST(CoreCalc, CalcOperation) +TEST(CoreCalc, Operation) { DOUBLES_EQUAL(0, calc_operation (NULL, 2, 3), 0.001); DOUBLES_EQUAL(0, calc_operation ("", 2, 3), 0.001); @@ -150,7 +150,7 @@ TEST(CoreCalc, CalcOperation) * calc_operation_stacks */ -TEST(CoreCalc, CalcOperationStacks) +TEST(CoreCalc, OperationStacks) { struct t_arraylist *list_values, *list_ops; double *ptr_value;