tests/dmesg: handle added carriage return when fixture is checked out on Windows.

This commit is contained in:
Fuad Ismail
2024-11-27 00:53:44 +07:00
parent f621687dd6
commit a56b75f7be

View File

@@ -70,7 +70,7 @@ fn test_kmsg_time_format(format: &str) {
.arg(time_format_arg)
.succeeds()
.no_stderr()
.stdout_is_fixture(expected_output);
.stdout_is_templated_fixture(expected_output, &[("\r\n", "\n")]);
}
#[test]