From e97dc6d38007d8b93cf138328963f2789a642527 Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Mon, 27 Apr 2015 16:12:29 +0100 Subject: [PATCH] Fix closure lifetime in tests. --- test/lua/unit/url.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/lua/unit/url.lua b/test/lua/unit/url.lua index 6d09fcb3f..d56d06405 100644 --- a/test/lua/unit/url.lua +++ b/test/lua/unit/url.lua @@ -10,12 +10,12 @@ context("URL check functions", function() unsigned ottery_rand_range(unsigned top); ]] - local pool = mpool.create() local test_dir = string.gsub(debug.getinfo(1).source, "^@(.+/)[^/]+$", "%1") ffi.C.rspamd_url_init(string.format('%s/%s', test_dir, "test_tld.dat")) test("Extract urls from text", function() + local pool = mpool.create() local cases = { {"test.com text", {"test.com", nil}}, {"test.com. text", {"test.com", nil}}, @@ -45,7 +45,7 @@ context("URL check functions", function() assert_equal(c[2][2], t['user']) end end + pool:destroy() end) - pool:destroy() end) \ No newline at end of file -- 2.39.5