Fixing typo in ReactDOMComponent test name (#10132)

This commit is contained in:
Eli White
2017-07-09 19:34:39 -04:00
committed by Nathan Hunzaker
parent 242929bac1
commit 5bc25cb186
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -763,7 +763,7 @@ src/renderers/dom/shared/__tests__/ReactDOMComponent-test.js
* should handle className
* should gracefully handle various style value types
* should not update styles when mutating a proxy style object
* should throw when mutating style objectsd
* should throw when mutating style objects
* should warn for unknown prop
* should group multiple unknown prop warnings together
* should warn for onDblClick prop
@@ -126,7 +126,7 @@ describe('ReactDOMComponent', () => {
expect(stubStyle.lineHeight).toBe('');
});
it('should throw when mutating style objectsd', () => {
it('should throw when mutating style objects', () => {
var style = {border: '1px solid black'};
class App extends React.Component {