This commit is contained in:
Mike Jolley 2016-12-14 11:07:39 +00:00
parent b5f9d6b6eb
commit ac1c9b5b7b
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ class WC_Tests_Functions extends WC_Unit_Test_Case {
*/ */
public function test_wc_get_coupon_type() { public function test_wc_get_coupon_type() {
$this->assertEquals( 'Cart discount', wc_get_coupon_type( 'fixed_cart' ) ); $this->assertEquals( 'Fixed cart discount', wc_get_coupon_type( 'fixed_cart' ) );
$this->assertEmpty( wc_get_coupon_type( 'bogus_type' ) ); $this->assertEmpty( wc_get_coupon_type( 'bogus_type' ) );
} }