diff --git a/test/box-tap/cfg.test.lua b/test/box-tap/cfg.test.lua index 453b616dd59c3c8587ff5adbb2ce09b685234562..5e72004cac6960ea1d66087c646bddfe6772054d 100755 --- a/test/box-tap/cfg.test.lua +++ b/test/box-tap/cfg.test.lua @@ -6,7 +6,7 @@ local socket = require('socket') local fio = require('fio') local uuid = require('uuid') local msgpack = require('msgpack') -test:plan(89) +test:plan(90) -------------------------------------------------------------------------------- -- Invalid values @@ -141,6 +141,7 @@ local status, reason = pcall(function() box.space._schema:insert({'read_only', 'test'}) end) test:ok(status, "read_only = false") +test:ok(box.space._schema:delete{'read_only'}, "drop read_only") -- gh-2663: box.cfg() parameter to set the number of coio threads box.cfg({ worker_pool_threads = 1})