From 08a62bad5f0da306a8eaefe5d3dbec7d3b869e9c Mon Sep 17 00:00:00 2001 From: Erik Montes Date: Wed, 17 Jun 2015 21:55:59 -0700 Subject: [PATCH] fixing chainability tests --- tests/tests.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests.js b/tests/tests.js index f721564..1c65cc8 100644 --- a/tests/tests.js +++ b/tests/tests.js @@ -16,7 +16,7 @@ var el = $el[0]; var placeholder = el.getAttribute('placeholder'); - strictEqual($el.placeholder(), $el, 'should be chainable'); + deepEqual($el.placeholder(), $el, 'should be chainable'); strictEqual(el.value, placeholder, 'should set `placeholder` text as `value`'); strictEqual($el.prop('value'), '', 'propHooks works properly');