aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-webserver-auth/src
diff options
context:
space:
mode:
authorPierre <pierre.guillot@sonarsource.com>2020-12-07 15:44:01 +0100
committersonartech <sonartech@sonarsource.com>2020-12-09 20:07:20 +0000
commit91c611fe568a94170adb174e63940db060932bb8 (patch)
treee3772597dd8d36fade5235f282542178101b08e4 /server/sonar-webserver-auth/src
parent5f1b82343cb99caae29ce07f316b3b6b556c8b33 (diff)
downloadsonarqube-91c611fe568a94170adb174e63940db060932bb8.tar.gz
sonarqube-91c611fe568a94170adb174e63940db060932bb8.zip
fix assertions on incompatible types on overall code
Diffstat (limited to 'server/sonar-webserver-auth/src')
-rw-r--r--server/sonar-webserver-auth/src/test/java/org/sonar/server/qualityprofile/BuiltInQProfileUpdateImplTest.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/server/sonar-webserver-auth/src/test/java/org/sonar/server/qualityprofile/BuiltInQProfileUpdateImplTest.java b/server/sonar-webserver-auth/src/test/java/org/sonar/server/qualityprofile/BuiltInQProfileUpdateImplTest.java
index 4d64f56da08..59d4b217e3f 100644
--- a/server/sonar-webserver-auth/src/test/java/org/sonar/server/qualityprofile/BuiltInQProfileUpdateImplTest.java
+++ b/server/sonar-webserver-auth/src/test/java/org/sonar/server/qualityprofile/BuiltInQProfileUpdateImplTest.java
@@ -351,8 +351,6 @@ public class BuiltInQProfileUpdateImplTest {
assertThat(activeRule.getSeverityString()).isEqualTo(expectedSeverity);
assertThat(activeRule.getInheritance()).isEqualTo(expectedInheritance != null ? expectedInheritance.name() : null);
- assertThat(activeRule.getCreatedAt()).isNotNull();
- assertThat(activeRule.getUpdatedAt()).isNotNull();
List<ActiveRuleParamDto> params = db.getDbClient().activeRuleDao().selectParamsByActiveRuleUuid(db.getSession(), activeRule.getUuid());
assertThat(params).hasSize(expectedParams.size());