don't try to money_format html
authordemeritcowboy <demeritcowboy@hotmail.com>
Wed, 31 Mar 2021 13:36:50 +0000 (09:36 -0400)
committerdemeritcowboy <demeritcowboy@hotmail.com>
Wed, 31 Mar 2021 13:36:50 +0000 (09:36 -0400)
tests/phpunit/CRM/Core/Smarty/plugins/CrmMoneyTest.php

index c170adcb552259abc0921dabad71c7e99b6ed291..e7e111a1b66203c3300b335e7e9e298788314d1f 100644 (file)
@@ -22,10 +22,6 @@ class CRM_Core_Smarty_plugins_CrmMoneyTest extends CiviUnitTestCase {
     $cases = [];
     $cases[] = ['$ 4.00', '{assign var="amount" value="4.00"}{$amount|crmMoney:USD}'];
     $cases[] = ['€ 1,234.00', '{assign var="amount" value="1234.00"}{$amount|crmMoney:EUR}'];
-    $cases[] = [
-      '$ <input size="10" style="background-color:#EBECE4" readonly="readonly" name="eachPaymentAmount" type="text" id="eachPaymentAmount" class="crm-form-text">',
-      '{assign var="amount" value=\'<input size="10" style="background-color:#EBECE4" readonly="readonly" name="eachPaymentAmount" type="text" id="eachPaymentAmount" class="crm-form-text">\'}{$amount|crmMoney:USD}',
-    ];
     return $cases;
   }