Skip to content

Commit

Permalink
Fix integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
charliermarsh committed Dec 22, 2022
1 parent 03e4f5b commit 48e3c04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration_test.rs
Expand Up @@ -23,7 +23,7 @@ fn test_stdin_error() -> Result<()> {
.failure();
assert_eq!(
str::from_utf8(&output.get_output().stdout)?,
"Found 1 error(s).\n-:1:8: F401 `os` imported but unused\n1 potentially fixable with the \
"-:1:8: F401 `os` imported but unused\nFound 1 error(s).\n1 potentially fixable with the \
--fix option.\n"
);
Ok(())
Expand All @@ -39,7 +39,7 @@ fn test_stdin_filename() -> Result<()> {
.failure();
assert_eq!(
str::from_utf8(&output.get_output().stdout)?,
"Found 1 error(s).\nF401.py:1:8: F401 `os` imported but unused\n1 potentially fixable \
"F401.py:1:8: F401 `os` imported but unused\nFound 1 error(s).\n1 potentially fixable \
with the --fix option.\n"
);
Ok(())
Expand Down

0 comments on commit 48e3c04

Please sign in to comment.