Skip to content

Commit

Permalink
Renamed function to roundtrip()
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter C. S. Scholtens authored Nov 4, 2019
1 parent c621e87 commit 1272b61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/preserve_sequence.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ fn read_original(file_name: &str) -> (String) {
.expect("Something went wrong reading the file")
}

fn test_sequence(file_name: &str) -> (String) {
fn test_roundtrip(file_name: &str) -> (String) {
let input_path = format!("{}/tests/{}", env!("CARGO_MANIFEST_DIR"), file_name);
let f = File::open(&input_path).expect("Failed opening file");
let config: Config = match from_reader(f) {
Expand Down

0 comments on commit 1272b61

Please sign in to comment.