forked from hugegraph/hugegraph-sync
fix: TinkerPop unit test lack some lables (#2387)
This commit is contained in:
parent
2c6fcdc719
commit
4346b44f80
|
|
@ -874,6 +874,10 @@ public class TestGraph implements Graph {
|
|||
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) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue