Fix - Unit test for woocommerce currencies

This commit is contained in:
Shiva Poudel 2016-01-27 12:02:43 +05:45
parent c0c94f210c
commit 27532a80ba
1 changed files with 2 additions and 2 deletions

View File

@ -53,8 +53,8 @@ class Core_Functions extends \WC_Unit_Test_Case {
'ISK' => __( 'Icelandic krona', 'woocommerce' ),
'JPY' => __( 'Japanese Yen', 'woocommerce' ),
'KES' => __( 'Kenyan shilling', 'woocommerce' ),
'LAK' => __( 'Lao Kip', 'woocommerce' ),
'KRW' => __( 'South Korean Won', 'woocommerce' ),
'LAK' => __( 'Lao Kip', 'woocommerce' ),
'MXN' => __( 'Mexican Peso', 'woocommerce' ),
'MYR' => __( 'Malaysian Ringgits', 'woocommerce' ),
'NGN' => __( 'Nigerian Naira', 'woocommerce' ),
@ -67,6 +67,7 @@ class Core_Functions extends \WC_Unit_Test_Case {
'PYG' => __( 'Paraguayan Guaraní', 'woocommerce' ),
'RON' => __( 'Romanian Leu', 'woocommerce' ),
'RUB' => __( 'Russian Ruble', 'woocommerce' ),
'SAR' => __( 'Saudi Riyal', 'woocommerce' ),
'SEK' => __( 'Swedish Krona', 'woocommerce' ),
'SGD' => __( 'Singapore Dollar', 'woocommerce' ),
'THB' => __( 'Thai Baht', 'woocommerce' ),
@ -78,7 +79,6 @@ class Core_Functions extends \WC_Unit_Test_Case {
'ZAR' => __( 'South African rand', 'woocommerce' ),
);
$this->assertEquals( $expected_currencies, get_woocommerce_currencies() );
}