eina: adjust precision for all our targeted convertion.

This commit is contained in:
Cedric Bail 2013-11-12 20:12:54 +09:00
parent 4ff18573a0
commit 2dc092d36e
1 changed files with 2 additions and 2 deletions

View File

@ -26,8 +26,8 @@
#include "eina_suite.h"
#include "Eina.h"
#define FP_ERR (0.0000001)
#define CHECK_FP(a, b) ((a - b) < FP_ERR)
#define FP_ERR (1)
#define CHECK_FP(a, b) ((a - b) <= FP_ERR)
START_TEST(eina_value_test_simple)
{