test: get rid of 'should be 1' comment

This should not be 1, since boolean properties always get set.
This commit is contained in:
Dave
2016-02-01 12:53:25 -08:00
parent 1ccec8b711
commit 1beae0c4ff
@@ -675,7 +675,7 @@ describe('ReactDOMComponent', function() {
expect(nodeValueSetter.mock.calls.length).toBe(1);
ReactDOM.render(<div checked={false} />, container);
expect(nodeValueSetter.mock.calls.length).toBe(2); // should be 1
expect(nodeValueSetter.mock.calls.length).toBe(2);
ReactDOM.render(<div checked={true} />, container);
expect(nodeValueSetter.mock.calls.length).toBe(3);