Fixed unit tests #10114

This commit is contained in:
Claudio Sanches 2016-01-21 20:19:03 -02:00
parent b12f74a263
commit 2cc13b6409
1 changed files with 1 additions and 1 deletions

View File

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