Skip to content

Commit 02c8c2f

Browse files
committed
dismiss smart join attribute test for versions older as 3.5
1 parent 3479990 commit 02c8c2f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/test/java/com/arangodb/ArangoDatabaseTest.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -277,6 +277,11 @@ public void createCollectionWithSmartJoinAttribute() {
277277

278278
@Test
279279
public void createCollectionWithSmartJoinAttributeWrong() {
280+
if (!requireVersion(3, 5)) {
281+
LOG.info("Skip Test because feature not implemented yet.");
282+
return;
283+
}
284+
280285
if (arangoDB.getVersion().getLicense() == License.COMMUNITY) {
281286
LOG.info("Skip Test on COMMUNITY SERVER");
282287
return;

0 commit comments

Comments
 (0)