ReactMultiChildText-test.js fix __html typo

This commit is contained in:
Yakov Dalinchuk
2015-05-07 16:06:11 +03:00
parent 1db70dbef1
commit 9b798400fd
@@ -210,7 +210,7 @@ describe('ReactMultiChildText', function() {
it('should throw if rendering both HTML and children', function() {
expect(function() {
ReactTestUtils.renderIntoDocument(
<div dangerouslySetInnerHTML={{_html: 'abcdef'}}>ghjkl</div>
<div dangerouslySetInnerHTML={{__html: 'abcdef'}}>ghjkl</div>
);
}).toThrow();
});