From 2540cc700fe272095ecb5be9e52b0a48c0743962 Mon Sep 17 00:00:00 2001 From: Dima Granetchi Date: Fri, 21 Nov 2014 22:48:41 +0200 Subject: [PATCH] minor --- test/ChainBindTest.hx | 4 ++++ test/ExprBindTest.hx | 1 - 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/test/ChainBindTest.hx b/test/ChainBindTest.hx index 8ac96a8..7fa72fe 100644 --- a/test/ChainBindTest.hx +++ b/test/ChainBindTest.hx @@ -162,6 +162,10 @@ class ChainBindTest extends BuddySuite { b.c = b2; callNum.should.be(2); + + Bind.notify(b.c.nc.nc.d, val, val = "f"); + + callNum.should.be(2); }); it("BindExt.chain should bind default fields", { diff --git a/test/ExprBindTest.hx b/test/ExprBindTest.hx index 886a57f..701d231 100644 --- a/test/ExprBindTest.hx +++ b/test/ExprBindTest.hx @@ -27,7 +27,6 @@ class ExprBindTest extends BuddySuite { inline function val() return a.str + b.str + "ab".charAt(0); BindExt.expr(a.str + b.str + "ab".charAt(0), function (from, to:String) { - //trace(from); to.should.be(val()); callNum ++; });