1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-03 00:03:12 +02:00

tests: fix name of tests

This commit is contained in:
Sébastien Helleu
2020-04-10 23:43:27 +02:00
parent 007fd03bc8
commit 9afe63b77a
+2 -2
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;