Skip to content

Commit

Permalink
Fixing typo in ReactDOMComponent test name (facebook#10132)
Browse files Browse the repository at this point in the history
  • Loading branch information
elicwhite authored and nhunzaker committed Jul 9, 2017
1 parent 242929b commit 5bc25cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/fiber/tests-passing.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 5bc25cb

Please sign in to comment.