From e3c5ef655a4558622db54448a244316aba4aeda1 Mon Sep 17 00:00:00 2001 From: Gediminas Jakutis Date: Thu, 9 Nov 2017 16:57:33 +0200 Subject: tests: time: fix incorrect test data. --- test/time.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/time.c') 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) { -- cgit v1.2.3