diff --git a/tests/unit-tests/util/core-functions.php b/tests/unit-tests/util/core-functions.php index 84f5661ad80..00d1c424a0f 100644 --- a/tests/unit-tests/util/core-functions.php +++ b/tests/unit-tests/util/core-functions.php @@ -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() ); }