Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
raviqqe committed Apr 28, 2024
1 parent d9b1fbd commit 52c5b6e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions profiler/src/read.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use crate::{ProcedureRecord, Record};
use crate::Record;
use core::str::FromStr;
use std::io::BufRead;

Expand All @@ -11,6 +11,7 @@ pub fn read_records<R: Record>(
#[cfg(test)]
mod tests {
use super::*;
use crate::ProcedureRecord;
use indoc::indoc;
use std::io::BufReader;

Expand All @@ -27,7 +28,7 @@ mod tests {
)
.as_bytes()
))
.collect(),
.collect::<Vec<_>>(),
vec![]
);
}
Expand Down

0 comments on commit 52c5b6e

Please sign in to comment.