Skip to content

Commit

Permalink
fix: tinkerpop unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
zyxxoo committed Dec 8, 2023
1 parent ed493f3 commit 60cfcb2
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -878,6 +878,10 @@ private void initBasicVertexLabelAndEdgeLabelExceptV(String defaultVL) {
schema.indexLabel("bTOcByGremlinPartition").onE("bTOc")
.by("gremlin.partitionGraphStrategy.partition")
.ifNotExist().create();
schema.edgeLabel("blah1").link(defaultVL, defaultVL)
.ifNotExist().create();
schema.edgeLabel("blah2").link(defaultVL, defaultVL)
.ifNotExist().create();
}

public void initEdgeLabelDefaultKnowsDefault(String defaultVL) {
Expand Down

0 comments on commit 60cfcb2

Please sign in to comment.