fix for static platforms

This commit is contained in:
Dima Granetchi
2014-11-22 20:39:14 +02:00
parent f93f78027c
commit a35ab09c7d
+1 -1
View File
@@ -51,7 +51,7 @@ class ExprBindTest extends BuddySuite {
c.str = "1";
inline function val() return if (a.str.charAt(b.str.length) == Std.string(c.str)) 1 else 0;
BindExt.expr(if (a.str.charAt(b.str.length) == Std.string(c.str)) 1 else 0, function (from, to:Int) {
BindExt.expr(if (a.str.charAt(b.str.length) == Std.string(c.str)) 1 else 0, function (from, to:Null<Int>) {
to.should.be(val());
callNum ++;
});