From 5bc25cb186575e22fa71282f4c78abe7ea04cf8c Mon Sep 17 00:00:00 2001 From: Eli White Date: Sun, 9 Jul 2017 16:34:39 -0700 Subject: [PATCH] Fixing typo in ReactDOMComponent test name (#10132) --- scripts/fiber/tests-passing.txt | 2 +- src/renderers/dom/shared/__tests__/ReactDOMComponent-test.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/fiber/tests-passing.txt b/scripts/fiber/tests-passing.txt index fb94519a93..c08b2f74e4 100644 --- a/scripts/fiber/tests-passing.txt +++ b/scripts/fiber/tests-passing.txt @@ -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 diff --git a/src/renderers/dom/shared/__tests__/ReactDOMComponent-test.js b/src/renderers/dom/shared/__tests__/ReactDOMComponent-test.js index 394cb5a74c..e26ca0f945 100644 --- a/src/renderers/dom/shared/__tests__/ReactDOMComponent-test.js +++ b/src/renderers/dom/shared/__tests__/ReactDOMComponent-test.js @@ -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 {