From 94b7bf7e0a2025f878867e77abde35d6652e3515 Mon Sep 17 00:00:00 2001 From: jwierzbo Date: Wed, 10 Aug 2022 11:09:08 +0200 Subject: [PATCH] GT-167 Temporary disable failing AQL tests for 3.10 --- test/view_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/view_test.go b/test/view_test.go index 4b8fac60..e1c0b3d1 100644 --- a/test/view_test.go +++ b/test/view_test.go @@ -429,7 +429,7 @@ func TestUseArangoSearchView(t *testing.T) { ctx := context.Background() // don't use disallowUnknownFields in this test - we have here custom structs defined c := createClient(t, true, false) - skipBelowVersion(c, "3.4", t) + skipBelowVersion(c, "3.11", t) db := ensureDatabase(nil, c, "view_test", nil, t) col := ensureCollection(ctx, db, "some_collection", nil, t) @@ -511,7 +511,7 @@ func TestUseArangoSearchViewWithPipelineAnalyzer(t *testing.T) { ctx := context.Background() // don't use disallowUnknownFields in this test - we have here custom structs defined c := createClient(t, true, false) - skipBelowVersion(c, "3.8", t) + skipBelowVersion(c, "3.11", t) db := ensureDatabase(nil, c, "view_with_pipeline_test", nil, t) col := ensureCollection(ctx, db, "some_collection_with_analyzer", nil, t)