diff --git a/java/integTest/src/test/java/glide/TransactionTestUtilities.java b/java/integTest/src/test/java/glide/TransactionTestUtilities.java index 115d7c5e9b..33aad465f7 100644 --- a/java/integTest/src/test/java/glide/TransactionTestUtilities.java +++ b/java/integTest/src/test/java/glide/TransactionTestUtilities.java @@ -67,37 +67,29 @@ public interface TransactionBuilder extends Function, Object[ /** Generate test samples for parametrized tests. Could be routed to random node. */ public static Stream getCommonTransactionBuilders() { return Stream.of( - // Arguments.of( - // "Generic Commands", (TransactionBuilder) - // TransactionTestUtilities::genericCommands), - // Arguments.of( - // "String Commands", (TransactionBuilder) - // TransactionTestUtilities::stringCommands), - // Arguments.of("Hash Commands", (TransactionBuilder) - // TransactionTestUtilities::hashCommands), - // Arguments.of("List Commands", (TransactionBuilder) - // TransactionTestUtilities::listCommands), - // Arguments.of("Set Commands", (TransactionBuilder) - // TransactionTestUtilities::setCommands), - // Arguments.of( - // "Sorted Set Commands", - // (TransactionBuilder) TransactionTestUtilities::sortedSetCommands), - // Arguments.of( - // "HyperLogLog Commands", - // (TransactionBuilder) - // TransactionTestUtilities::hyperLogLogCommands), Arguments.of( - "Stream Commands", (TransactionBuilder) TransactionTestUtilities::streamCommands)); - // Arguments.of( - // "Connection Management Commands", - // (TransactionBuilder) - // TransactionTestUtilities::connectionManagementCommands), - // Arguments.of( - // "Geospatial Commands", - // (TransactionBuilder) TransactionTestUtilities::geospatialCommands), - // Arguments.of( - // "Bitmap Commands", (TransactionBuilder) - // TransactionTestUtilities::bitmapCommands)); + "Generic Commands", (TransactionBuilder) TransactionTestUtilities::genericCommands), + Arguments.of( + "String Commands", (TransactionBuilder) TransactionTestUtilities::stringCommands), + Arguments.of("Hash Commands", (TransactionBuilder) TransactionTestUtilities::hashCommands), + Arguments.of("List Commands", (TransactionBuilder) TransactionTestUtilities::listCommands), + Arguments.of("Set Commands", (TransactionBuilder) TransactionTestUtilities::setCommands), + Arguments.of( + "Sorted Set Commands", + (TransactionBuilder) TransactionTestUtilities::sortedSetCommands), + Arguments.of( + "HyperLogLog Commands", + (TransactionBuilder) TransactionTestUtilities::hyperLogLogCommands), + Arguments.of( + "Stream Commands", (TransactionBuilder) TransactionTestUtilities::streamCommands), + Arguments.of( + "Connection Management Commands", + (TransactionBuilder) TransactionTestUtilities::connectionManagementCommands), + Arguments.of( + "Geospatial Commands", + (TransactionBuilder) TransactionTestUtilities::geospatialCommands), + Arguments.of( + "Bitmap Commands", (TransactionBuilder) TransactionTestUtilities::bitmapCommands)); } /** Generate test samples for parametrized tests. Could be routed to primary nodes only. */