From 9625db9eb8f530f6b4b1f502980a87125db1f22c Mon Sep 17 00:00:00 2001 From: jwierzbo Date: Fri, 12 Aug 2022 15:20:31 +0200 Subject: [PATCH] Revert "GT-167 Temporary disable failing AQL tests for 3.10 (#419)" This reverts commit 756f3a4d4496b3d5c04b6777a9552ae5893ac1a0. --- 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 e1c0b3d1..4b8fac60 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.11", t) + skipBelowVersion(c, "3.4", 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.11", t) + skipBelowVersion(c, "3.8", t) db := ensureDatabase(nil, c, "view_with_pipeline_test", nil, t) col := ensureCollection(ctx, db, "some_collection_with_analyzer", nil, t)