Skip to content

Commit a04bc4b

Browse files
committed
fix double_buckets_not_applied test, now works for get
1 parent ffb837c commit a04bc4b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/integration/double_buckets_test.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ local not_applied_operations = {
221221
},
222222
get = {
223223
call = function (g, key)
224-
return g.router:call('crud.get', { 'customers', key })
224+
return g.router:call('crud.get', { 'customers', key, {mode = 'write'} })
225225
end,
226226
check_applied = function() end,
227227
check_not_applied = function(not_applied_ids)
@@ -245,7 +245,7 @@ pgroup_not_applied.test_not_applied = function(g)
245245
),
246246
'test implemented only for 3.1 and greater'
247247
)
248-
t.skip_if(g.params.operation == 'get' and g.params.safe_mode == false, 'todo: rework get')
248+
-- t.skip_if(g.params.operation == 'get' and g.params.safe_mode == false, 'todo: rework get')
249249
if g.params.backend == "config" then
250250
local tuples, tuples_count = {}, 1000
251251
for i = 1, tuples_count do

0 commit comments

Comments
 (0)