diff options
author | Christian Grothoff <christian@grothoff.org> | 2016-11-18 16:34:00 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2016-11-18 16:34:00 +0100 |
commit | f80a1013666d21408b790a5e9d8614d6da52c59c (patch) | |
tree | ca6c8bf096a1b423413558a2a75cd0db15ac7a14 | |
parent | c583d0a8b47b763e42748466ca5396feacf48d25 (diff) |
fixing another test failing due to amount 1e-8 change
-rw-r--r-- | src/exchangedb/test_exchangedb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/exchangedb/test_exchangedb.c b/src/exchangedb/test_exchangedb.c index 1e76de16b..bc46a8f80 100644 --- a/src/exchangedb/test_exchangedb.c +++ b/src/exchangedb/test_exchangedb.c @@ -1303,7 +1303,7 @@ run (void *cls) sizeof (reserve_pub))); /* this is the amount we trasferred twice*/ FAILIF (1 != bt->amount.value); - FAILIF (10 != bt->amount.fraction); + FAILIF (1000 != bt->amount.fraction); FAILIF (0 != strcmp (CURRENCY, bt->amount.currency)); FAILIF (NULL == bt->sender_account_details); FAILIF (NULL == bt->transfer_details); |