Skip to content

Commit

Permalink
SLCORE-945 fix medium test
Browse files Browse the repository at this point in the history
  • Loading branch information
jblievremont committed Sep 19, 2024
1 parent d9eb4e6 commit dc62499
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ void it_should_analyze_xml_file_in_standalone_mode(@TempDir Path baseDir) {
assertThat(rawIssue.getSeverity()).isEqualTo(IssueSeverity.MINOR);
assertThat(rawIssue.getType()).isEqualTo(RuleType.CODE_SMELL);
assertThat(rawIssue.getCleanCodeAttribute()).isEqualTo(CleanCodeAttribute.CONVENTIONAL);
assertThat(rawIssue.getImpacts()).isEqualTo(Map.of(SoftwareQuality.MAINTAINABILITY, ImpactSeverity.INFO));
assertThat(rawIssue.getImpacts()).isEqualTo(Map.of(SoftwareQuality.MAINTAINABILITY, ImpactSeverity.LOW));
assertThat(rawIssue.getRuleKey()).isEqualTo("xml:S3421");
assertThat(rawIssue.getPrimaryMessage()).isEqualTo("Replace \"pom.version\" with \"project.version\".");
assertThat(rawIssue.getFileUri()).isEqualTo(fileUri);
Expand Down

0 comments on commit dc62499

Please sign in to comment.