@@ -37,7 +37,7 @@ public function testFromContextReturnsCartUrl(string $context)
3737
3838 $ result = $ this ->testee ->from_context ($ context );
3939
40- $ this ->assertEquals ('https://example.com/cart?pcp-return=button ' , $ result );
40+ $ this ->assertEquals ('https://example.com/cart ' , $ result );
4141 }
4242
4343 public function testFromContextProductReturnsProductUrl ()
@@ -56,7 +56,7 @@ public function testFromContextProductReturnsProductUrl()
5656
5757 $ result = $ this ->testee ->from_context ('product ' , $ request_data );
5858
59- $ this ->assertEquals ('https://example.com/product/123?pcp-return=button ' , $ result );
59+ $ this ->assertEquals ('https://example.com/product/123 ' , $ result );
6060 }
6161
6262 public function testFromContextProductThrowsExceptionWhenNoUrl ()
@@ -90,7 +90,7 @@ public function testFromContextPayNowReturnsOrderPaymentUrl()
9090
9191 $ result = $ this ->testee ->from_context ('pay-now ' , $ request_data );
9292
93- $ this ->assertEquals ('https://example.com/checkout/pay/123?key=abc&pcp-return=button ' , $ result );
93+ $ this ->assertEquals ('https://example.com/checkout/pay/123?key=abc ' , $ result );
9494 }
9595
9696 public function testFromContextPayNowThrowsExceptionWhenOrderNotFound ()
@@ -110,7 +110,7 @@ public function testFromContextCheckoutReturnsCheckoutUrl()
110110
111111 $ result = $ this ->testee ->from_context ('checkout ' );
112112
113- $ this ->assertEquals ('https://example.com/checkout?pcp-return=button ' , $ result );
113+ $ this ->assertEquals ('https://example.com/checkout ' , $ result );
114114 }
115115
116116 public function testFromContextDefaultReturnsCheckoutUrl ()
@@ -119,18 +119,9 @@ public function testFromContextDefaultReturnsCheckoutUrl()
119119
120120 $ result = $ this ->testee ->from_context ('unknown-context ' );
121121
122- $ this ->assertEquals ('https://example.com/checkout?pcp-return=button ' , $ result );
122+ $ this ->assertEquals ('https://example.com/checkout ' , $ result );
123123 }
124124
125- public function testFromContextReturnsCartUrlWithCustomArgs ()
126- {
127- when ('wc_get_cart_url ' )->justReturn ('https://example.com/cart ' );
128-
129- $ result = $ this ->testee ->from_context ('cart ' , [], ['session ' => '123 ' ]);
130-
131- $ this ->assertEquals ('https://example.com/cart?pcp-return=button&session=123 ' , $ result );
132- }
133-
134125 public function cartContextProvider (): array
135126 {
136127 return [
0 commit comments