diff --git a/tests/unit-tests/coupon/functions.php b/tests/unit-tests/coupon/functions.php index 8b7027e834f..dbe3f31444e 100644 --- a/tests/unit-tests/coupon/functions.php +++ b/tests/unit-tests/coupon/functions.php @@ -30,7 +30,7 @@ class WC_Tests_Functions extends WC_Unit_Test_Case { */ 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' ) ); }