test: increase ping timeout when running in debug mode

This commit is contained in:
Joseph Goulden 2021-08-20 15:48:40 +01:00
parent 803d8041f1
commit af4eb23a1c

View file

@ -50,7 +50,13 @@ const FRESHNESS_TIMER: u64 = 60;
#[cfg(test)]
const FRESHNESS_TIMER: u64 = 1;
#[cfg(not(debug_assertions))]
const PING_TIMER: u64 = 5;
/// Signature operations take a lot longer without compiler optimisations.
/// Increasing the ping timer allows for this but slower devices will be disconnected if the
/// timeout is reached.
#[cfg(debug_assertions)]
const PING_TIMER: u64 = 30;
/// Trait which handles persisting a [`ChannelManager`] to disk.
///