Fix indentation for lint

This commit is contained in:
Ben Alpert
2016-12-07 23:16:47 -08:00
parent f56eb89389
commit 2161a6c92f
@@ -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',
]
);
});