Remove Deprecations from Release 2

In preparation for Release 3.
This commit is contained in:
oleibman
2024-08-19 12:57:54 -07:00
parent f7c183b8ed
commit 370b754a3f
5 changed files with 10 additions and 134 deletions
@@ -43,10 +43,10 @@ class TranslationTest extends TestCase
self::markTestSkipped("Unable to set locale to {$locale}");
}
$translatedFormula = Calculation::getInstance()->_translateFormulaToLocale($formula);
$translatedFormula = Calculation::getInstance()->translateFormulaToLocale($formula);
self::assertSame($expectedResult, $translatedFormula);
$restoredFormula = Calculation::getInstance()->_translateFormulaToEnglish($translatedFormula);
$restoredFormula = Calculation::getInstance()->translateFormulaToEnglish($translatedFormula);
self::assertSame(preg_replace(Calculation::CALCULATION_REGEXP_STRIP_XLFN_XLWS, '', $formula), $restoredFormula);
}