aboutsummaryrefslogtreecommitdiff
path: root/src/test/test_channelpadding.c
diff options
context:
space:
mode:
authorMike Perry <mikeperry-git@torproject.org>2017-06-21 16:30:53 -0400
committerNick Mathewson <nickm@torproject.org>2017-06-26 11:26:59 -0400
commit0592ee45fcb244f6fedf3d39867c8cb289f518e9 (patch)
tree0701ffbfcc54f0992c2a8c3aa5f2a37267815532 /src/test/test_channelpadding.c
parent784b29a2bfc7b7ce5ef355629528a38c50b81908 (diff)
downloadtor-0592ee45fcb244f6fedf3d39867c8cb289f518e9.tar.gz
tor-0592ee45fcb244f6fedf3d39867c8cb289f518e9.zip
Demote a log message due to libevent delays.
This is a side-effect of being single-threaded. The worst cases of this are actually Bug #16585.
Diffstat (limited to 'src/test/test_channelpadding.c')
-rw-r--r--src/test/test_channelpadding.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/test/test_channelpadding.c b/src/test/test_channelpadding.c
index 0a70184f86..3b889991b6 100644
--- a/src/test/test_channelpadding.c
+++ b/src/test/test_channelpadding.c
@@ -795,8 +795,6 @@ test_channelpadding_decide_to_pad_channel(void *arg)
tried_to_write_cell = 0;
chan->next_padding_time_ms = monotime_coarse_absolute_msec() - 100;
decision = channelpadding_decide_to_pad_channel(chan);
- expect_log_msg("Channel padding timeout scheduled 100ms in the past. "
- "Did the monotonic clock just jump?\n");
tt_int_op(decision, OP_EQ, CHANNELPADDING_PADDING_SENT);
tt_int_op(tried_to_write_cell, OP_EQ, 1);
tt_assert(!chan->pending_padding_callback);