core.storagemanager: Fix tests by removing an assert that upset luarocks

Not sure why but this assert() caused a stack overflow in luarocks
pull/27/head
Kim Alvefur 1 year ago
parent eacf72504c
commit 0ed2d38edf
  1. 2
      spec/core_storagemanager_spec.lua

@ -63,7 +63,7 @@ describe("storagemanager", function ()
end
assert(hm.activate(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 ()
-- These tests rely on being executed in order, disable any order

Loading…
Cancel
Save