From 90c1ae3fe032761778b8c321879a502167a0cc48 Mon Sep 17 00:00:00 2001 From: Ken Hu <106191785+kenhuuu@users.noreply.github.com> Date: Thu, 14 Dec 2023 21:03:21 -0800 Subject: [PATCH] CTR serializer name change in HttpDriverIntegrateTest --- .../tinkerpop/gremlin/server/HttpDriverIntegrateTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/HttpDriverIntegrateTest.java b/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/HttpDriverIntegrateTest.java index 8c922383a7a..2d08b7722f7 100644 --- a/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/HttpDriverIntegrateTest.java +++ b/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/HttpDriverIntegrateTest.java @@ -209,7 +209,7 @@ public void shouldFailToUseTx() throws Exception { public void shouldDeserializeErrorWithGraphBinary() throws Exception { final Cluster cluster = TestClientFactory.build() .channelizer(Channelizer.HttpChannelizer.class) - .serializer(Serializers.GRAPHBINARY_V1D0) + .serializer(Serializers.GRAPHBINARY_V1) .create(); try { final GraphTraversalSource g = traversal().withRemote(DriverRemoteConnection.using(cluster, "doesNotExist")); @@ -226,7 +226,7 @@ public void shouldDeserializeErrorWithGraphBinary() throws Exception { public void shouldDeserializeErrorWithGraphSON() throws Exception { final Cluster cluster = TestClientFactory.build() .channelizer(Channelizer.HttpChannelizer.class) - .serializer(Serializers.GRAPHSON_V3D0) + .serializer(Serializers.GRAPHSON_V3) .create(); try { final GraphTraversalSource g = traversal().withRemote(DriverRemoteConnection.using(cluster, "doesNotExist"));