From 2161a6c92fcfbc5524dc312ff87cec3d4f5ba437 Mon Sep 17 00:00:00 2001 From: Ben Alpert Date: Wed, 7 Dec 2016 23:16:27 -0800 Subject: [PATCH] Fix indentation for lint --- .../ReactCompositeComponentState-test.js | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) 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', + ] ); });