aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/time.c2
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) {