This is an automated email from the ASF dual-hosted git repository.
spmallette 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 357e307ec5 Loosen assertion for error message on mergeE a bit CTR
new 50b43d8ba9 Merge branch '3.6-dev'
357e307ec5 is described below
commit 357e307ec569fd2971ca17af63c7595bf68e69fa
Author: Stephen Mallette <[email protected]>
AuthorDate: Mon Oct 23 08:33:21 2023 -0400
Loosen assertion for error message on mergeE a bit CTR
---
.../apache/tinkerpop/gremlin/test/features/map/MergeEdge.feature | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git
a/gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/map/MergeEdge.feature
b/gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/map/MergeEdge.feature
index 791f427aa2..ae30e00f9f 100644
---
a/gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/map/MergeEdge.feature
+++
b/gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/map/MergeEdge.feature
@@ -206,7 +206,7 @@ Feature: Step - mergeE()
g.mergeE([:])
"""
When iterated to list
- Then the traversal will raise an error with message containing text of
"Out Vertex not specified in onCreate - edge cannot be created"
+ Then the traversal will raise an error with message containing text of
"Out Vertex not specified"
Scenario: g_V_mergeEXemptyX_two_exist
Given the empty graph
@@ -237,7 +237,7 @@ Feature: Step - mergeE()
g.mergeE(null)
"""
When iterated to list
- Then the traversal will raise an error with message containing text of
"Out Vertex not specified in onCreate - edge cannot be created"
+ Then the traversal will raise an error with message containing text of
"Out Vertex not specified"
# Directions not specified
Scenario: g_V_mergeEXnullX
@@ -251,7 +251,7 @@ Feature: Step - mergeE()
g.V().mergeE(null)
"""
When iterated to list
- Then the traversal will raise an error with message containing text of
"Out Vertex not specified in onCreate - edge cannot be created"
+ Then the traversal will raise an error with message containing text of
"Out Vertex not specified"
Scenario: g_mergeEXlabel_knows_out_marko_in_vadasX
Given the empty graph