diff options
-rw-r--r-- | server/sonar-webserver-pushapi/src/test/java/org/sonar/server/pushapi/qualityprofile/QualityProfileChangeEventServiceImplTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-webserver-pushapi/src/test/java/org/sonar/server/pushapi/qualityprofile/QualityProfileChangeEventServiceImplTest.java b/server/sonar-webserver-pushapi/src/test/java/org/sonar/server/pushapi/qualityprofile/QualityProfileChangeEventServiceImplTest.java index 3bc395f22c0..0a99424b2ce 100644 --- a/server/sonar-webserver-pushapi/src/test/java/org/sonar/server/pushapi/qualityprofile/QualityProfileChangeEventServiceImplTest.java +++ b/server/sonar-webserver-pushapi/src/test/java/org/sonar/server/pushapi/qualityprofile/QualityProfileChangeEventServiceImplTest.java @@ -115,7 +115,7 @@ public class QualityProfileChangeEventServiceImplTest { underTest.distributeRuleChangeEvent(List.of(defaultQualityProfile), of(activeRuleChange), language); - Deque<PushEventDto> events = getProjectEvents(project.projectUuid()); + Deque<PushEventDto> events = getProjectEvents(project.branchUuid()); assertThat(events) .hasSize(1); |