Skip to content

Commit

Permalink
CTR serializer name change in HttpDriverIntegrateTest
Browse files Browse the repository at this point in the history
  • Loading branch information
kenhuuu committed Dec 15, 2023
1 parent 9455347 commit 90c1ae3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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"));
Expand All @@ -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"));
Expand Down

0 comments on commit 90c1ae3

Please sign in to comment.