Skip to content

Commit

Permalink
chore: sonarcloud quality gate fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
grigoriev committed Oct 29, 2024
1 parent 03bce69 commit cd444ed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ private void fillWorkItemFields(IWorkItem workItem, Map<String, Object> mappingR
boolean ensureValidValue(String fieldId, Object value, Set<FieldMetadata> fieldMetadataSet) {
FieldMetadata fieldMetadata = getFieldMetadataForField(fieldMetadataSet, fieldId);
if (FieldType.BOOLEAN.getType().equals(fieldMetadata.getType()) &&
(!(value instanceof String) || !("true".equalsIgnoreCase((String) value) || "false".equalsIgnoreCase((String) value)))) {
(!(value instanceof String stringValue) || !("true".equalsIgnoreCase(stringValue) || "false".equalsIgnoreCase(stringValue)))) {
throw new IllegalArgumentException(String.format("'%s' isn't a valid boolean value", value == null ? "" : value));
}
return true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,9 @@ void testSettingDoesNotExist() {
ExcelSheetMappingSettingsModel model = excelSheetMappingSettings.defaultValues();
model.setBundleTimestamp("default");

SettingId settingId = SettingId.fromName("Any setting name");
assertThrows(ObjectNotFoundException.class, () -> {
ExcelSheetMappingSettingsModel loadedModel = excelSheetMappingSettings.load(projectName, SettingId.fromName("Any setting name"));
excelSheetMappingSettings.load(projectName, settingId);
});
}
}
Expand Down

0 comments on commit cd444ed

Please sign in to comment.