summaryrefslogtreecommitdiff
path: root/deps/uv/test/test-hrtime.c
diff options
context:
space:
mode:
Diffstat (limited to 'deps/uv/test/test-hrtime.c')
-rw-r--r--deps/uv/test/test-hrtime.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/deps/uv/test/test-hrtime.c b/deps/uv/test/test-hrtime.c
index 72a4d4b181..fbe9a68bfc 100644
--- a/deps/uv/test/test-hrtime.c
+++ b/deps/uv/test/test-hrtime.c
@@ -43,9 +43,9 @@ TEST_IMPL(hrtime) {
/* printf("i= %d diff = %llu\n", i, (unsigned long long int) diff); */
- /* The windows Sleep() function has only a resolution of 10-20 ms. */
- /* Check that the difference between the two hrtime values is somewhat in */
- /* the range we expect it to be. */
+ /* The windows Sleep() function has only a resolution of 10-20 ms. Check
+ * that the difference between the two hrtime values is somewhat in the
+ * range we expect it to be. */
ASSERT(diff > (uint64_t) 25 * NANOSEC / MILLISEC);
ASSERT(diff < (uint64_t) 80 * NANOSEC / MILLISEC);
--i;