From e208e35e33ca603a194f9ef659d5e40ccd9edf7e Mon Sep 17 00:00:00 2001 From: Claudio Sanches Date: Thu, 20 Apr 2017 01:33:22 -0300 Subject: [PATCH] Fixed coding standards in tests --- tests/unit-tests/product/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit-tests/product/functions.php b/tests/unit-tests/product/functions.php index 7fed230c52b..bc2005eaea8 100644 --- a/tests/unit-tests/product/functions.php +++ b/tests/unit-tests/product/functions.php @@ -365,7 +365,7 @@ class WC_Tests_Product_Functions extends WC_Unit_Test_Case { * @since 3.0.2 */ public function test_wc_is_attribute_in_product_name() { - $this->assertTrue( wc_is_attribute_in_product_name( 'L', 'Product – L') ); + $this->assertTrue( wc_is_attribute_in_product_name( 'L', 'Product – L' ) ); $this->assertTrue( wc_is_attribute_in_product_name( 'Two Words', 'Product – L, Two Words' ) ); $this->assertTrue( wc_is_attribute_in_product_name( 'Blue', 'Product – The Cool One – Blue, Large' ) ); $this->assertFalse( wc_is_attribute_in_product_name( 'L', 'Product' ) );