diff --git a/tests/preserve_sequence.rs b/tests/preserve_sequence.rs index 99da2aa0..bd52b586 100644 --- a/tests/preserve_sequence.rs +++ b/tests/preserve_sequence.rs @@ -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) {