diff options
author | Pierre <pierre.guillot@sonarsource.com> | 2020-12-07 15:44:01 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2020-12-09 20:07:20 +0000 |
commit | 91c611fe568a94170adb174e63940db060932bb8 (patch) | |
tree | e3772597dd8d36fade5235f282542178101b08e4 /server/sonar-webserver-auth/src | |
parent | 5f1b82343cb99caae29ce07f316b3b6b556c8b33 (diff) | |
download | sonarqube-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.java | 2 |
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()); |