When running cargo test on Windows 10 I'm seeing the following errors:
---- sample_1_full stdout ----
thread 'sample_1_full' panicked at '
Unexpected event at line 3:
Expected: Whitespace("\n ")
Found: Whitespace("\r\n ")
', tests\event_reader.rs:388:20
note: Run with RUST_BACKTRACE=1 for a backtrace.
---- sample_2_full stdout ----
thread 'sample_2_full' panicked at '
Unexpected event at line 3:
Expected: Whitespace("\n ")
Found: Whitespace("\r\n ")
', tests\event_reader.rs:388:20
---- sample_4_full stdout ----
thread 'sample_4_full' panicked at '
Unexpected event at line 3:
Expected: Whitespace("\n ")
Found: Whitespace("\r\n ")
', tests\event_reader.rs:388:20
---- sample_3_full stdout ----
thread 'sample_3_full' panicked at '
Unexpected event at line 3:
Expected: 2:31 Whitespace("\n ")
Found: 2:31 Whitespace("\r\n ")
', tests\event_reader.rs:388:20
failures:
sample_1_full
sample_2_full
sample_3_full
sample_4_full
test result: FAILED. 14 passed; 4 failed; 0 ignored; 0 measured; 0 filtered out
error: test failed, to rerun pass '--test event_reader'
When running
cargo teston Windows 10 I'm seeing the following errors: