From 34784e5dca4c755cbb70e902693937d87f7fc9a3 Mon Sep 17 00:00:00 2001 From: Claudio Sanches Date: Thu, 15 Sep 2016 19:56:23 -0300 Subject: [PATCH] Fixed unit tests for wc_get_account_downloads_columns() cc @mikejolley --- tests/unit-tests/account/functions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit-tests/account/functions.php b/tests/unit-tests/account/functions.php index 6fe82999bd9..ed405fb74cb 100644 --- a/tests/unit-tests/account/functions.php +++ b/tests/unit-tests/account/functions.php @@ -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() ); } }