fix: default make_entry (#1239)

from_string doesnt exist. Its called gen_from_string
This commit is contained in:
Simon Hauser
2021-09-13 21:49:13 +02:00
committed by GitHub
parent 6d1440a8e5
commit 4380e453ca
2 changed files with 3 additions and 3 deletions

View File

@@ -9,7 +9,7 @@ local await_count = 1000
return function(opts)
opts = opts or {}
local entry_maker = opts.entry_maker or make_entry.from_string
local entry_maker = opts.entry_maker or make_entry.gen_from_string
local cwd = opts.cwd
local fn_command = assert(opts.fn_command, "Must pass `fn_command`")