mirror of
https://git.mills.io/prologic/zs
synced 2025-04-04 13:53:33 +03:00
fixed eval func prototype in tests
This commit is contained in:
parent
fe8ba46281
commit
e9e3299cf0
1 changed files with 2 additions and 2 deletions
|
@ -49,8 +49,8 @@ this: is a content`)
|
|||
}
|
||||
|
||||
func TestRender(t *testing.T) {
|
||||
eval := func(a []string) ([]byte, error) {
|
||||
return []byte("hello"), nil
|
||||
eval := func(a []string, vars map[string]string) (string, error) {
|
||||
return "hello", nil
|
||||
}
|
||||
vars := map[string]string{"foo": "bar"}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue