diff --git a/src/renderers/shared/shared/__tests__/ReactCompositeComponentState-test.js b/src/renderers/shared/shared/__tests__/ReactCompositeComponentState-test.js index eded0437ed..7f8fe7a4c8 100644 --- a/src/renderers/shared/shared/__tests__/ReactCompositeComponentState-test.js +++ b/src/renderers/shared/shared/__tests__/ReactCompositeComponentState-test.js @@ -299,16 +299,16 @@ describe('ReactCompositeComponent-state', () => { // We expect the same thing to happen if we bail out in the middle. expect(ops).toEqual( ReactDOMFeatureFlags.useFiber ? - [ - // Fiber works as expected - 'child did update', - 'parent did update', - ] : [ - // Stack treats these as two separate updates and therefore the order - // is inverse. - 'parent did update', - 'child did update', - ] + [ + // Fiber works as expected + 'child did update', + 'parent did update', + ] : [ + // Stack treats these as two separate updates and therefore the order + // is inverse. + 'parent did update', + 'child did update', + ] ); });