Fixed test for wc_format_list_of_items

This commit is contained in:
Claudio Sanches 2015-05-28 10:28:49 -03:00
parent 9826273f8f
commit eff9b5ec18
1 changed files with 1 additions and 1 deletions

View File

@ -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 ) );
}
/**