From f9044d40a01324c1cc0c029bd02f3d6298bba4f6 Mon Sep 17 00:00:00 2001 From: demeritcowboy Date: Wed, 31 Mar 2021 09:36:50 -0400 Subject: [PATCH] don't try to money_format html --- tests/phpunit/CRM/Core/Smarty/plugins/CrmMoneyTest.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tests/phpunit/CRM/Core/Smarty/plugins/CrmMoneyTest.php b/tests/phpunit/CRM/Core/Smarty/plugins/CrmMoneyTest.php index c170adcb55..e7e111a1b6 100644 --- a/tests/phpunit/CRM/Core/Smarty/plugins/CrmMoneyTest.php +++ b/tests/phpunit/CRM/Core/Smarty/plugins/CrmMoneyTest.php @@ -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[] = [ - '$ ', - '{assign var="amount" value=\'\'}{$amount|crmMoney:USD}', - ]; return $cases; } -- 2.25.1