Skip to content

Commit

Permalink
Fix tests (#521)
Browse files Browse the repository at this point in the history
* Fix tests
  • Loading branch information
Shella authored Feb 2, 2024
1 parent c597e83 commit 294ed03
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/connector/http/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ pub mod path;
pub mod request;
pub mod response;

pub use self::{connection::*, error::*, path::*};
pub use self::{connection::*, error::*};

/// HTTP version.
pub const HTTP_VERSION: &str = "HTTP/1.1";
Expand Down
2 changes: 1 addition & 1 deletion src/serialization.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ mod de;
mod error;
mod ser;

pub use self::error::{Error, ErrorKind};
pub use self::error::Error;
use std::io::Cursor;

/// Serialize a message into a byte vector
Expand Down

0 comments on commit 294ed03

Please sign in to comment.