Skip to content

Commit 47330d2

Browse files
committed
make api compatible with 5.3
1 parent e0d8154 commit 47330d2

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tests/GeneralGraphExtendedTest.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,12 @@ public function setUp()
3030
$this->v5 = "v5" . $v;
3131
$this->e1 = "e1" . $v;
3232
$this->e2 = "e2" . $v;
33+
$param1 = [$this->v1, $this->v2];
34+
$param2 = [$this->v3, $this->v4];
3335
$ed1 = EdgeDefinition::createDirectedRelation(
3436
$this->e1,
35-
[$this->v1, $this->v2],
36-
[$this->v3, $this->v4]
37+
$param1,
38+
$param2
3739
);
3840
$ed2 = EdgeDefinition::createUndirectedRelation(
3941
$this->e2, $this->v5

0 commit comments

Comments
 (0)