Skip to content

Commit

Permalink
use notEqual body isntead of equal null
Browse files Browse the repository at this point in the history
  • Loading branch information
akre54 committed Mar 6, 2014
1 parent bef78ef commit c62708f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/view.js
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@
document.body.appendChild(view.el);
view._removeElement();
strictEqual(view.el, el);
strictEqual(view.el.parentNode, null);
notEqual(view.el.parentNode, document.body);
});

})();

0 comments on commit c62708f

Please sign in to comment.