mirror of https://gitee.com/bigwinds/arangodb
Fixed shell edges Test. The new version of edgeCollection.edge returns a unique array
This commit is contained in:
parent
ca1995224e
commit
ef834037df
|
@ -112,7 +112,8 @@ function CollectionEdgeSuite () {
|
||||||
|
|
||||||
e = edge.edges([v1, v2]);
|
e = edge.edges([v1, v2]);
|
||||||
|
|
||||||
assertEqual(4, e.length);
|
// The list of edges is UNIQUE. So we find both edges exactly once
|
||||||
|
assertEqual(2, e.length);
|
||||||
},
|
},
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
Loading…
Reference in New Issue