diff --git a/tests/cli.rs b/tests/cli.rs index 4060ab0..6b98c5d 100644 --- a/tests/cli.rs +++ b/tests/cli.rs @@ -233,7 +233,7 @@ mod cli { let expected = r##"{"total":11,"successful":11,"failures":0,"timeouts":0,"redirects":0,"excludes":0,"errors":0,"fail_map":{}}"##; let output = fs::read_to_string(&outfile)?; - assert_eq!(output, expected); + assert_eq!(output.split_whitespace().collect::(), expected); fs::remove_file(outfile)?; Ok(()) }