Skip to content

Commit

Permalink
Fix integration test expectation
Browse files Browse the repository at this point in the history
  • Loading branch information
ericmorand-sonarsource committed Mar 19, 2024
1 parent afc77ef commit de3d32a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@ public static void prepare() {
void parsing_error_not_on_excluded_files() {
assertThat(buildResult.getLogs())
.doesNotMatch(
"(?s).*ERROR: Failed to parse file file:\\S*file-with-parsing-error-excluded\\.css.*"
"(?s).*WARN: Failed to parse file file:\\S*file-with-parsing-error-excluded\\.css.*"
)
.matches(
"(?s).*ERROR: Failed to parse file file:\\S*file-with-parsing-error\\.css, line 1, Unclosed block.*"
"(?s).*WARN: Failed to parse file file:\\S*file-with-parsing-error\\.css, line 1, Unclosed block.*"
);
}

Expand Down

0 comments on commit de3d32a

Please sign in to comment.