From 086c4b0be3b8a22ac7e23d2d1a6e1e19d22dd795 Mon Sep 17 00:00:00 2001 From: Jorge Esteban Quilcate Otoya Date: Wed, 15 Jul 2020 10:45:05 +0100 Subject: [PATCH] fix call to sourcedescription --- .../confluent/ksql/api/client/ClientTest.java | 21 ++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/ksqldb-api-client/src/test/java/io/confluent/ksql/api/client/ClientTest.java b/ksqldb-api-client/src/test/java/io/confluent/ksql/api/client/ClientTest.java index 56391f4e3817..7155356d247c 100644 --- a/ksqldb-api-client/src/test/java/io/confluent/ksql/api/client/ClientTest.java +++ b/ksqldb-api-client/src/test/java/io/confluent/ksql/api/client/ClientTest.java @@ -899,9 +899,24 @@ public void shouldFailToDescribeSourceViaExecuteStatement() { // Given final SourceDescriptionEntity entity = new SourceDescriptionEntity( "describe source;", - new SourceDescription("name", Optional.empty(), Collections.emptyList(), Collections.emptyList(), - Collections.emptyList(), "type", "timestamp", "statistics", "errorStats", - false, "keyFormat", "valueFormat", "topic", 4, 1, "statement"), + new SourceDescription( + "name", + Optional.empty(), + Collections.emptyList(), + Collections.emptyList(), + Collections.emptyList(), + "type", + "timestamp", + "statistics", + "errorStats", + false, + "keyFormat", + "valueFormat", + "topic", + 4, + 1, + "statement", + Collections.emptyList()), Collections.emptyList()); testEndpoints.setKsqlEndpointResponse(Collections.singletonList(entity));