Skip to content

Commit

Permalink
🔥 zb: Remove some redundant imports
Browse files Browse the repository at this point in the history
  • Loading branch information
zeenix committed Feb 21, 2024
1 parent e27ef43 commit 294a614
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion zbus/src/message/header.rs
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ static SERIAL_NUM: AtomicU32 = AtomicU32::new(1);
mod tests {
use crate::message::{Field, Fields, Header, PrimaryHeader, Type};

use std::{error::Error, result::Result};
use std::error::Error;
use test_log::test;
use zbus_names::{InterfaceName, MemberName};
use zvariant::{ObjectPath, Signature};
Expand Down
4 changes: 1 addition & 3 deletions zbus/src/proxy/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1342,9 +1342,7 @@ where
#[cfg(test)]
mod tests {
use super::*;
use crate::{
connection, interface, object_server::SignalContext, proxy, utils::block_on, AsyncDrop,
};
use crate::{connection, interface, object_server::SignalContext, proxy, utils::block_on};
use futures_util::StreamExt;
use ntest::timeout;
use test_log::test;
Expand Down

0 comments on commit 294a614

Please sign in to comment.