fixed eval func prototype in tests

このコミットが含まれているのは:
Serge A. Zaitsev 2014-12-05 19:05:46 +02:00
コミット e9e3299cf0
1個のファイルの変更2行の追加2行の削除

ファイルの表示

@ -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"}