@@ -111,7 +111,7 @@ public function testBeforeSavePaymentInformationAndPlaceOrderCartConvertsToGuest
111
111
$ collectionMock ->expects ($ this ->once ())->method ('walk ' )->with ($ walkMethod , $ walkArgs );
112
112
$ this ->cartRepositoryMock ->expects ($ this ->once ())->method ('save ' )->with ($ quoteMock );
113
113
114
- $ this ->plugin ->beforeSavePaymentInformationAndPlaceOrder (
114
+ $ this ->plugin ->beforeSavePaymentInformation (
115
115
$ this ->subjectMock ,
116
116
$ cartId ,
117
117
$ email ,
@@ -134,7 +134,7 @@ public function testBeforeSavePaymentInformationAndPlaceOrderShoppingCartNotPers
134
134
$ this ->persistentSessionMock ->expects ($ this ->once ())->method ('isPersistent ' )->willReturn (true );
135
135
$ this ->customerSessionMock ->expects ($ this ->once ())->method ('isLoggedIn ' )->willReturn (false );
136
136
137
- $ this ->plugin ->beforeSavePaymentInformationAndPlaceOrder (
137
+ $ this ->plugin ->beforeSavePaymentInformation (
138
138
$ this ->subjectMock ,
139
139
$ cartId ,
140
140
$ email ,
@@ -155,7 +155,7 @@ public function testBeforeSavePaymentInformationAndPlaceOrderPersistentSessionNo
155
155
156
156
$ this ->persistentSessionMock ->expects ($ this ->once ())->method ('isPersistent ' )->willReturn (false );
157
157
158
- $ this ->plugin ->beforeSavePaymentInformationAndPlaceOrder (
158
+ $ this ->plugin ->beforeSavePaymentInformation (
159
159
$ this ->subjectMock ,
160
160
$ cartId ,
161
161
$ email ,
@@ -177,7 +177,7 @@ public function testBeforeSavePaymentInformationAndPlaceOrderCustomerSessionInLo
177
177
$ this ->persistentSessionMock ->expects ($ this ->once ())->method ('isPersistent ' )->willReturn (true );
178
178
$ this ->customerSessionMock ->expects ($ this ->once ())->method ('isLoggedIn ' )->willReturn (true );
179
179
180
- $ this ->plugin ->beforeSavePaymentInformationAndPlaceOrder (
180
+ $ this ->plugin ->beforeSavePaymentInformation (
181
181
$ this ->subjectMock ,
182
182
$ cartId ,
183
183
$ email ,
@@ -201,7 +201,7 @@ public function testBeforeSavePaymentInformationAndPlaceOrderQuoteManagerNotInPe
201
201
$ this ->customerSessionMock ->expects ($ this ->once ())->method ('isLoggedIn ' )->willReturn (false );
202
202
$ this ->quoteManagerMock ->expects ($ this ->once ())->method ('isPersistent ' )->willReturn (false );
203
203
204
- $ this ->plugin ->beforeSavePaymentInformationAndPlaceOrder (
204
+ $ this ->plugin ->beforeSavePaymentInformation (
205
205
$ this ->subjectMock ,
206
206
$ cartId ,
207
207
$ email ,
0 commit comments