Skip to content

Commit

Permalink
removed imports
Browse files Browse the repository at this point in the history
  • Loading branch information
annikahannig committed Aug 20, 2024
1 parent 98f09c6 commit 032aba5
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 5 deletions.
1 change: 0 additions & 1 deletion src/bird.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
use std::fs::File;
use std::io::Write;
use std::os::unix::net::UnixStream;

Expand Down
2 changes: 1 addition & 1 deletion src/parsers/neighbors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ fn parse_route_change_stats(
mod tests {
use super::*;
use std::fs::File;
use std::io::{BufRead, BufReader};
use std::io::BufReader;

#[test]
fn test_parse_neighbor_header() {
Expand Down
3 changes: 0 additions & 3 deletions src/parsers/routes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -321,9 +321,6 @@ fn parse_route_bgp(route: &mut Route, line: &str) -> Result<State> {
mod tests {
use super::*;

use std::fs::File;
use std::io::BufReader;

#[test]
fn test_match_route_header() {
let line =
Expand Down

0 comments on commit 032aba5

Please sign in to comment.