aboutsummaryrefslogtreecommitdiff
path: root/test/helpers.lua
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2017-04-26 15:28:10 +0200
committerBjörn Linse <bjorn.linse@gmail.com>2019-03-02 16:29:50 +0100
commit9a1675b065394734ddaef91a314896028e2b1d46 (patch)
treea8e869da9a89592dd69a806c19dbeacef84f9bf4 /test/helpers.lua
parent018e0d5a19c3f710f41a78bcbb0c6e3e393a5ed8 (diff)
downloadrneovim-9a1675b065394734ddaef91a314896028e2b1d46.tar.gz
rneovim-9a1675b065394734ddaef91a314896028e2b1d46.tar.bz2
rneovim-9a1675b065394734ddaef91a314896028e2b1d46.zip
floats: implement floating windows
Co-Author: Dongdong Zhou <dzhou121@gmail.com>
Diffstat (limited to 'test/helpers.lua')
-rw-r--r--test/helpers.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/helpers.lua b/test/helpers.lua
index 9f998ef919..e4c3019adc 100644
--- a/test/helpers.lua
+++ b/test/helpers.lua
@@ -47,8 +47,8 @@ local check_logs_useless_lines = {
['See README_MISSING_SYSCALL_OR_IOCTL for guidance']=3,
}
-local function eq(expected, actual, ctx)
- return assert.are.same(expected, actual, ctx)
+local function eq(expected, actual, context)
+ return assert.are.same(expected, actual, context)
end
local function neq(expected, actual, context)
return assert.are_not.same(expected, actual, context)