ci: format

This commit is contained in:
Barrett Ruth 2026-03-06 15:47:24 -05:00
parent f2c7efdd6f
commit 480c832306

View file

@ -143,7 +143,9 @@ describe('oauth', function()
config.reset()
vim.g.pending = { data_path = tmpdir .. '/tasks.json' }
local orig_load = oauth.load_json_file
oauth.load_json_file = function() return nil end
oauth.load_json_file = function()
return nil
end
local c = oauth.new({ name = 'gtasks', scope = 'x', port = 0, config_key = 'gtasks' })
local creds = c:resolve_credentials()
oauth.load_json_file = orig_load