Skip to content
Snippets Groups Projects
Commit 965ada65 authored by Kirill Yukhin's avatar Kirill Yukhin
Browse files

test: fix box-tap/cfg.test

After read-only flag is dropped, a test space
is created successfully and on next launch creation
will fail since it is not droppped.
Drop the space.

Closes #3507
parent 566e066c
No related branches found
No related tags found
No related merge requests found
......@@ -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})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment