From e7a2263ad230471c62c88a1ab6fc5966c6689084 Mon Sep 17 00:00:00 2001 From: Christoph Pirkl Date: Mon, 22 Apr 2024 15:45:10 +0200 Subject: [PATCH] Suppress deprecation warning --- src/test/java/com/exasol/adapter/AdapterPropertiesTest.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/test/java/com/exasol/adapter/AdapterPropertiesTest.java b/src/test/java/com/exasol/adapter/AdapterPropertiesTest.java index d1b28f3..858f1c1 100644 --- a/src/test/java/com/exasol/adapter/AdapterPropertiesTest.java +++ b/src/test/java/com/exasol/adapter/AdapterPropertiesTest.java @@ -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 @@ -115,4 +117,4 @@ public AdapterProperties createPropertyListWithSpecificPropertySetToAValue(final this.rawProperties.put(propertyName, propertyName + "_VALUE"); return new AdapterProperties(this.rawProperties); } -} \ No newline at end of file +}