remove gpg module

This commit is contained in:
creating2morrow 2024-04-07 11:05:03 -04:00
commit 71b752e1e8
2 changed files with 4 additions and 4 deletions

View file

@ -712,7 +712,7 @@ mod tests {
let _enter = rt.enter();
let body: String = String::from("test body");
let message = Message {
body: body.into_bytes(),
body: body,
..Default::default()
};
let j_message = utils::message_to_json(&message);
@ -734,7 +734,7 @@ mod tests {
let _enter = rt.enter();
let body: String = String::from("test body");
let expected_message = Message {
body: body.into_bytes(),
body: body,
..Default::default()
};
let k = "test-key";
@ -757,7 +757,7 @@ mod tests {
let _enter = rt.enter();
let body: String = String::from("test body");
let message = Message {
body: body.into_bytes(),
body: body,
..Default::default()
};
let j_message = utils::message_to_json(&message);

View file

@ -969,7 +969,7 @@ mod tests {
std::thread::spawn(move || {
rt.block_on(async {
loop {
tokio::time::sleep(Duration::from_secs(3600)).await;
tokio::time::sleep(std::time::Duration::from_secs(3600)).await;
}
})
});