diff options
author | Matthew Wild <mwild1@gmail.com> | 2021-11-29 14:22:08 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2021-11-29 14:22:08 +0000 |
commit | 06da62a6fea32ccd33c0cab6f77221aa5b48ae51 (patch) | |
tree | 474ddb06613d8c96c8235d5ab649d6ce7fc2edc0 /spec | |
parent | f89a58330b584f8188b4a11f54c195dc29923051 (diff) | |
download | prosody-06da62a6fea32ccd33c0cab6f77221aa5b48ae51.tar.gz prosody-06da62a6fea32ccd33c0cab6f77221aa5b48ae51.zip |
util.async tests: Explicitly import match from luassert (luacheck)
Diffstat (limited to 'spec')
-rw-r--r-- | spec/util_async_spec.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/spec/util_async_spec.lua b/spec/util_async_spec.lua index 77afd1fc..dbb49ff7 100644 --- a/spec/util_async_spec.lua +++ b/spec/util_async_spec.lua @@ -1,4 +1,5 @@ local async = require "util.async"; +local match = require "luassert.match"; describe("util.async", function() local debug = false; |