This is an automated email from the ASF dual-hosted git repository.
kenhuuu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git
The following commit(s) were added to refs/heads/master by this push:
new d1f0fcedb5 Fix test assertion needed from 2722cef70f25 change CTR
d1f0fcedb5 is described below
commit d1f0fcedb51f8033159e853f74af7f8199a2692e
Author: Ken Hu <[email protected]>
AuthorDate: Tue Mar 31 09:43:07 2026 -0700
Fix test assertion needed from 2722cef70f25 change CTR
---
.../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 f152bd8ce9..7ce01eac70 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: No serializer found"));
+ assertThat(node.get("status").get("message").asText(),
startsWith("Error during serialization:"));
}
}