From 542b0c746fb442de9e88a22347471da2e61ff918 Mon Sep 17 00:00:00 2001 From: informalict Date: Mon, 9 Dec 2019 16:04:35 +0100 Subject: [PATCH] Adjust memory limit for cursor tests --- tests/cursor_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cursor_test.go b/tests/cursor_test.go index 9cff0f8cc..26023b1cf 100644 --- a/tests/cursor_test.go +++ b/tests/cursor_test.go @@ -302,7 +302,7 @@ func runCursorTests(t *testing.T, client driver.Client) { queryTestContext{driver.WithQueryCache(nil), false}, queryTestContext{driver.WithQueryCache(nil, true), false}, queryTestContext{driver.WithQueryCache(nil, false), false}, - queryTestContext{driver.WithQueryMemoryLimit(nil, 60000), false}, + queryTestContext{driver.WithQueryMemoryLimit(nil, 600000), false}, queryTestContext{driver.WithQueryTTL(nil, time.Minute), false}, queryTestContext{driver.WithQueryBatchSize(driver.WithQueryCount(nil), 1), true}, queryTestContext{driver.WithQueryCache(driver.WithQueryCount(driver.WithQueryBatchSize(nil, 2))), true},