Fixed unit tests for wc_get_account_downloads_columns()

cc @mikejolley
This commit is contained in:
Claudio Sanches 2016-09-15 19:56:23 -03:00
parent beaeac9648
commit 34784e5dca
1 changed files with 2 additions and 2 deletions

View File

@ -45,9 +45,9 @@ class WC_Tests_Account_Functions extends WC_Unit_Test_Case {
public function test_wc_get_account_downloads_columns() {
$this->assertEquals( array(
'download-file' => __( 'File', 'woocommerce' ),
'download-remaining' => __( 'Remaining', 'woocommerce' ),
'download-remaining' => __( 'Downloads Remaining', 'woocommerce' ),
'download-expires' => __( 'Expires', 'woocommerce' ),
'download-actions' => ' ',
'download-product' => __( 'Product', 'woocommerce' ),
), wc_get_account_downloads_columns() );
}
}