Skip to content

Commit 060b29f

Browse files
committed
Added new argument to _bind() test
1 parent c3b8881 commit 060b29f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/specs/reactfire.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -470,8 +470,8 @@ describe("ReactFireMixin Tests:", function() {
470470
componentWillMount: function() {
471471
var _this = this;
472472

473-
expect(function() { _this._bind(firebaseRef, "items", true); }).not.toThrow();
474-
expect(function() { _this._bind(firebaseRef, "items", false); }).not.toThrow();
473+
expect(function() { _this._bind(firebaseRef, "items", function() {}, true); }).not.toThrow();
474+
expect(function() { _this._bind(firebaseRef, "items", function() {}, false); }).not.toThrow();
475475
},
476476

477477
render: function() {

0 commit comments

Comments
 (0)