Fix typo in TestFlags

Copypasta when setting up `old` and `new` aliases. `old` should mean
that `enableNewReconciler` is off.
This commit is contained in:
Andrew Clark
2020-04-14 23:31:50 -07:00
parent d53988a9d1
commit cbafbf4f32

View File

@@ -65,7 +65,7 @@ function getTestFlags() {
return new Proxy(
{
// Feature flag aliases
old: featureFlags.enableNewReconciler === true,
old: featureFlags.enableNewReconciler === false,
new: featureFlags.enableNewReconciler === true,
channel: releaseChannel,