tests: fix name of tests

master
Sébastien Helleu 2020-04-10 23:43:27 +02:00
parent 007fd03bc8
commit 9afe63b77a
1 changed files with 2 additions and 2 deletions

View File

@ -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;