Skip to content

Commit 724b509

Browse files
committed
#945 Fix FBServiceManagerTest#testBeanProperties
1 parent 90f6e5b commit 724b509

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/test/org/firebirdsql/management/FBServiceManagerTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,7 @@ private static Object generateTestValue(PropertyDescriptor beanProperty, Object
226226
case "int", "java.lang.Integer" -> originalValue == null ? 1 : ((int) originalValue) + 1;
227227
case "org.firebirdsql.gds.ng.WireCrypt" ->
228228
originalValue == WireCrypt.ENABLED ? WireCrypt.DISABLED : WireCrypt.ENABLED;
229+
case "org.firebirdsql.management.ServiceRequestCustomizer" -> new GetServiceRequestContext();
229230
default -> throw new IllegalStateException("Property: %s has unsupported type: %s"
230231
.formatted(propertyName, beanProperty.getPropertyType()));
231232
};

0 commit comments

Comments
 (0)