Skip to content

Commit

Permalink
NO-JIRA fix sq issues
Browse files Browse the repository at this point in the history
  • Loading branch information
leo-geoffroy-sonarsource authored and sonartech committed Jan 7, 2025
1 parent 8e7559c commit e54f99e
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@
import static org.sonar.server.qualityprofile.ActiveRuleChange.Type.ACTIVATED;
import static org.sonar.server.qualityprofile.ActiveRuleChange.Type.UPDATED;

public class ActiveRuleChangeTest {
class ActiveRuleChangeTest {

private static final String A_USER_UUID = "A_USER_UUID";

@Test
public void toDto() {
void toDto() {
QProfileDto profile = newQualityProfileDto();
ActiveRuleKey key = ActiveRuleKey.of(profile, RuleKey.of("P1", "R1"));
String ruleUuid = Uuids.createFast();
Expand Down Expand Up @@ -73,7 +73,7 @@ public void toDto() {
}

@Test
public void toDto_whenIdenticalImpacts_shouldNotReturnImpactChanges() {
void toDto_whenIdenticalImpacts_shouldNotReturnImpactChanges() {
QProfileDto profile = newQualityProfileDto();
ActiveRuleKey key = ActiveRuleKey.of(profile, RuleKey.of("P1", "R1"));
String ruleUuid = Uuids.createFast();
Expand All @@ -89,7 +89,7 @@ public void toDto_whenIdenticalImpacts_shouldNotReturnImpactChanges() {
}

@Test
public void toDto_whenRuleChangeDtoIsActivated_shouldNotReturnImpactChanges() {
void toDto_whenRuleChangeDtoIsActivated_shouldNotReturnImpactChanges() {
QProfileDto profile = newQualityProfileDto();
ActiveRuleKey key = ActiveRuleKey.of(profile, RuleKey.of("P1", "R1"));
String ruleUuid = Uuids.createFast();
Expand All @@ -107,7 +107,7 @@ public void toDto_whenRuleChangeDtoIsActivated_shouldNotReturnImpactChanges() {
}

@Test
public void toDto_whenRuleChangeDtoIsActivatedAndSameImpacts_shouldNotReturnImpactChanges() {
void toDto_whenRuleChangeDtoIsActivatedAndSameImpacts_shouldNotReturnImpactChanges() {
QProfileDto profile = newQualityProfileDto();
ActiveRuleKey key = ActiveRuleKey.of(profile, RuleKey.of("P1", "R1"));
String ruleUuid = Uuids.createFast();
Expand Down

0 comments on commit e54f99e

Please sign in to comment.