Skip to content

Commit

Permalink
wruster: remove unneeded return statement
Browse files Browse the repository at this point in the history
  • Loading branch information
manelmontilla committed Nov 18, 2023
1 parent 5fb810c commit 4fb4f8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wruster/src/streams/test_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,5 +75,5 @@ pub fn test_file_size(name: &str) -> Result<u64, io::Error> {
file_path.push("tests/assets");
file_path.push(name);
let metadata = fs::metadata(&file_path).unwrap();
return Ok(metadata.len());
Ok(metadata.len())
}

0 comments on commit 4fb4f8a

Please sign in to comment.