]> Nishi Git Mirror - aya.git/commitdiff
fixed eval func prototype in tests
authorSerge A. Zaitsev <zaitsev.serge@gmail.com>
Fri, 5 Dec 2014 17:05:46 +0000 (19:05 +0200)
committerSerge A. Zaitsev <zaitsev.serge@gmail.com>
Fri, 5 Dec 2014 17:05:46 +0000 (19:05 +0200)
zs_test.go

index 0dbd68afb48d19336b133291d61ba17965ba958d..b18bfa2e2f03787eebff51e4263b88e2abdb3a52 100644 (file)
@@ -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"}