diff options
author | 2017-11-09 16:57:33 +0200 | |
---|---|---|
committer | 2017-11-09 16:57:33 +0200 | |
commit | e3c5ef655a4558622db54448a244316aba4aeda1 (patch) | |
tree | 27875a3823ed0e190a5b7b0823e02209a7481a7b | |
parent | 8c4296b7268f72e30e66879353b012ce52effbea (diff) | |
download | librin-e3c5ef655a4558622db54448a244316aba4aeda1.tar.gz librin-e3c5ef655a4558622db54448a244316aba4aeda1.tar.bz2 librin-e3c5ef655a4558622db54448a244316aba4aeda1.zip |
tests: time: fix incorrect test data.
-rw-r--r-- | test/time.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/time.c b/test/time.c index fe8a195..4307fd1 100644 --- a/test/time.c +++ b/test/time.c @@ -94,7 +94,7 @@ static int rin_time_normalize_test(void) int ret; size_t i; static const struct timespec in[] = { {187, -100}, {0, 1999999999}, {2, 99000000000}, {10, 10}, {0, 1000000000}, {0, 0} }; - static const struct timespec expected[] = { {186, 999999899}, {1, 999999999}, {101, 0}, {10, 10}, {1, 0}, {0, 0} }; + static const struct timespec expected[] = { {186, 999999900}, {1, 999999999}, {101, 0}, {10, 10}, {1, 0}, {0, 0} }; struct timespec tmp; for (i = 0; i < arrlen(expected); ++i) { |