Gah. Fix broken lambda tests.

This is what I get for blindly following code sniff recommendations.
This commit is contained in:
Justin Hileman
2014-03-25 07:49:02 -07:00
parent 8debbd58bb
commit b3e3e0a27a
@@ -62,7 +62,7 @@ class Mustache_Test_FiveThree_Functional_MustacheSpecTest extends PHPUnit_Framew
} }
$func = $val['php']; $func = $val['php'];
$data[$key] = function() use ($func) { $data[$key] = function($text = null) use ($func) {
return eval($func); return eval($func);
}; };
} elseif (is_array($val)) { } elseif (is_array($val)) {