Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/tools/tools_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ use proptest::prelude::*;

use super::*;
use crate::chatlist::Chatlist;
use crate::test_utils::TimeShiftFalsePositiveNote;
use crate::{chat, test_utils};
use crate::{receive_imf::receive_imf, test_utils::TestContext};

Expand Down Expand Up @@ -431,6 +432,8 @@ async fn test_maybe_warn_on_bad_time() {

#[tokio::test(flavor = "multi_thread", worker_threads = 2)]
async fn test_maybe_warn_on_outdated() {
let _n = TimeShiftFalsePositiveNote;

let t = TestContext::new().await;
let timestamp_now: i64 = time();

Expand Down
Loading