From eff9b5ec18cf8dc8436c6ae462fddc94f64e5331 Mon Sep 17 00:00:00 2001 From: Claudio Sanches Date: Thu, 28 May 2015 10:28:49 -0300 Subject: [PATCH] Fixed test for wc_format_list_of_items --- tests/unit-tests/cart/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit-tests/cart/functions.php b/tests/unit-tests/cart/functions.php index 1014d9579fe..d43307ad717 100644 --- a/tests/unit-tests/cart/functions.php +++ b/tests/unit-tests/cart/functions.php @@ -38,7 +38,7 @@ class Functions extends \WC_Unit_Test_Case { public function test_wc_format_list_of_items() { $items = array( 'Title 1', 'Title 2' ); - $this->assertEquals( ""Title 1" and "Title 2"", wc_format_list_of_items( $items ) ); + $this->assertEquals( "“Title 1“ and “Title 2“", wc_format_list_of_items( $items ) ); } /**