mirror of
https://github.com/bjc/prosody.git
synced 2025-04-01 20:27:39 +03:00
core.storagemanager: Fix tests by removing an assert that upset luarocks
Not sure why but this assert() caused a stack overflow in luarocks
This commit is contained in:
parent
eacf72504c
commit
0ed2d38edf
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ describe("storagemanager", function ()
|
||||||
end
|
end
|
||||||
assert(hm.activate(test_host, {}));
|
assert(hm.activate(test_host, {}));
|
||||||
sm.initialize_host(test_host);
|
sm.initialize_host(test_host);
|
||||||
assert(mm.load(test_host, "storage_"..backend_config.storage));
|
mm.load(test_host, "storage_"..backend_config.storage);
|
||||||
|
|
||||||
describe("key-value stores", function ()
|
describe("key-value stores", function ()
|
||||||
-- These tests rely on being executed in order, disable any order
|
-- These tests rely on being executed in order, disable any order
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue