We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31a5532 commit 3fd7b50Copy full SHA for 3fd7b50
tests/test_auth.lua
@@ -71,7 +71,7 @@ T["auth()"]["auth issue replication"] = function()
71
local messages = ""
72
local function has_passed()
73
messages = vim.api.nvim_exec("messages", { output = true }) or ""
74
- return string.find(messages, ".*Online.*Enabled.*") ~= nil
+ return string.find(messages, ".*Online.*") ~= nil
75
end
76
77
vim.wait(5000, function()
@@ -81,7 +81,7 @@ T["auth()"]["auth issue replication"] = function()
81
return messages
82
]])
83
84
- u.expect_match(messages, ".*Online.*Enabled.*")
+ u.expect_match(messages, ".*Online.*")
85
86
87
T["auth()"]["is_authenticated when not authed returns false"] = function()
0 commit comments