Skip to content

Commit

Permalink
Suppress deprecation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
kaklakariada committed Apr 22, 2024
1 parent 528bfd6 commit e7a2263
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/test/java/com/exasol/adapter/AdapterPropertiesTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ void testEmptyProperties() {
assertThat(AdapterProperties.emptyProperties(), equalTo(new AdapterProperties(Collections.emptyMap())));
}

@SuppressWarnings("removal") // EXCEPTION_HANDLING_PROPERTY will be removed in
// https://github.com/exasol/virtual-schema-common-java/issues/269
@ValueSource(strings = { CATALOG_NAME_PROPERTY, SCHEMA_NAME_PROPERTY, CONNECTION_NAME_PROPERTY,
DEBUG_ADDRESS_PROPERTY, LOG_LEVEL_PROPERTY, EXCLUDED_CAPABILITIES_PROPERTY, EXCEPTION_HANDLING_PROPERTY })
@ParameterizedTest
Expand Down Expand Up @@ -115,4 +117,4 @@ public AdapterProperties createPropertyListWithSpecificPropertySetToAValue(final
this.rawProperties.put(propertyName, propertyName + "_VALUE");
return new AdapterProperties(this.rawProperties);
}
}
}

0 comments on commit e7a2263

Please sign in to comment.