mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
Allow case-insensitive match in test_tortls_debug_state_callback
This commit is contained in:
parent
bfd9dccdb8
commit
94669c829c
@ -1834,7 +1834,8 @@ test_tortls_debug_state_callback(void *ignored)
|
||||
n = snprintf(buf, 1000, "SSL %p is now in state unknown"
|
||||
" state [type=32,val=45].\n", ssl);
|
||||
buf[n]='\0';
|
||||
tt_str_op(mock_saved_log_at(0), OP_EQ, buf);
|
||||
if (strcasecmp(mock_saved_log_at(0), buf))
|
||||
tt_str_op(mock_saved_log_at(0), OP_EQ, buf);
|
||||
|
||||
done:
|
||||
teardown_capture_of_logs(previous_log);
|
||||
|
Loading…
Reference in New Issue
Block a user