From c432c619d18ff16bb4627f438b39d8075a80c154 Mon Sep 17 00:00:00 2001 From: AlexeyKhmyrov Date: Tue, 23 Oct 2018 13:56:27 -0500 Subject: [PATCH] Change unit tests for wc_format_dimensions() --- tests/unit-tests/formatting/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit-tests/formatting/functions.php b/tests/unit-tests/formatting/functions.php index e0b5a80908f..16cc3c8c711 100644 --- a/tests/unit-tests/formatting/functions.php +++ b/tests/unit-tests/formatting/functions.php @@ -878,7 +878,7 @@ class WC_Tests_Formatting_Functions extends WC_Unit_Test_Case { * @since 3.3.0 */ public function test_wc_format_dimensions() { - $this->assertEquals( '10 x 10 x 10 cm', wc_format_dimensions( array( 10, 10, 10 ) ) ); + $this->assertEquals( '10 × 10 × 10 cm', wc_format_dimensions( array( 10, 10, 10 ) ) ); } /**