clippy: forbid wildcard_imports

This commit is contained in:
Alexander Krotov
2021-01-12 08:18:37 +03:00
committed by link2xt
parent eeba70eb49
commit 5e8e77dfb6
36 changed files with 169 additions and 116 deletions

View File

@@ -4,7 +4,7 @@ use std::fmt;
use num_traits::FromPrimitive;
use crate::aheader::*;
use crate::aheader::{Aheader, EncryptPreference};
use crate::chat;
use crate::constants::Blocked;
use crate::context::Context;
@@ -487,7 +487,7 @@ impl From<crate::key::FingerprintError> for rusqlite::Error {
#[cfg(test)]
mod tests {
use super::*;
use crate::test_utils::*;
use crate::test_utils::alice_keypair;
use pretty_assertions::assert_eq;
#[async_std::test]