diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-12-07 11:09:27 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-12-07 11:09:27 -0500 |
commit | b0a842913acfb0de16ccb8ae358b6f6ee19d0898 (patch) | |
tree | 23086352a7e659ee8c2c448dc209198e18953173 /src/test/test_util.c | |
parent | 129cee1c7511edd82dae77cf2946b147e4eed887 (diff) | |
parent | fce425e3ff0281de29f04ac46d8c395befee607d (diff) | |
download | tor-b0a842913acfb0de16ccb8ae358b6f6ee19d0898.tar.gz tor-b0a842913acfb0de16ccb8ae358b6f6ee19d0898.zip |
Merge branch 'maint-0.2.9'
Diffstat (limited to 'src/test/test_util.c')
-rw-r--r-- | src/test/test_util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/test_util.c b/src/test/test_util.c index b74f658146..7e5a44cb59 100644 --- a/src/test/test_util.c +++ b/src/test/test_util.c @@ -5531,9 +5531,9 @@ test_util_monotonic_time(void *arg) tt_u64_op(msecc1, OP_GE, nsecc1 / 1000000); tt_u64_op(usecc1, OP_GE, nsecc1 / 1000); tt_u64_op(msec1, OP_LE, nsec1 / 1000000 + 1); - tt_u64_op(usec1, OP_LE, nsec1 / 1000 +10); + tt_u64_op(usec1, OP_LE, nsec1 / 1000 + 1000); tt_u64_op(msecc1, OP_LE, nsecc1 / 1000000 + 1); - tt_u64_op(usecc1, OP_LE, nsecc1 / 1000 + 10); + tt_u64_op(usecc1, OP_LE, nsecc1 / 1000 + 1000); done: ; |