This is an automated email from the ASF dual-hosted git repository.
kenhuuu pushed a commit to branch v4-graphson-trim
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git
The following commit(s) were added to refs/heads/v4-graphson-trim by this push:
new 589873a3f8 update test
589873a3f8 is described below
commit 589873a3f806ee6c7e4132c2a58c82cfa1fc3235
Author: Ken Hu <[email protected]>
AuthorDate: Thu Oct 31 10:17:50 2024 -0700
update test
---
.../apache/tinkerpop/gremlin/server/GremlinServerHttpIntegrateTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinServerHttpIntegrateTest.java
b/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinServerHttpIntegrateTest.java
index a9a179f4d7..13018eaf36 100644
---
a/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinServerHttpIntegrateTest.java
+++
b/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinServerHttpIntegrateTest.java
@@ -836,7 +836,7 @@ public class GremlinServerHttpIntegrateTest extends
AbstractGremlinServerIntegra
assertEquals(SerTokens.MIME_JSON,
response.getEntity().getContentType().getValue());
final String json = EntityUtils.toString(response.getEntity());
final JsonNode node = mapper.readTree(json);
- assertThat(node.get("status").get("message").asText(),
startsWith("Error during serialization: Could not find a type identifier for
the class"));
+ assertThat(node.get("status").get("message").asText(),
startsWith("Error during serialization: No serializer found"));
}
}