-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
STRIPE-37: Stripe Split Order Payment (#33943)
- Implemented CI fixes
- Loading branch information
1 parent
932fdf9
commit 5d36c1e
Showing
9 changed files
with
39 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -113,7 +113,11 @@ public function testSendAuthorizationFailed() | |
$this->doctrineHelper->expects($this->never()) | ||
->method('getSingleEntityIdentifier'); | ||
|
||
$this->messageNotifications->sendAuthorizationFailed($paymentTransaction, ['[email protected]']); | ||
$this->messageNotifications->sendAuthorizationFailed( | ||
$paymentTransaction, | ||
['[email protected]'], | ||
'Payment card declined' | ||
); | ||
} | ||
|
||
public function testSendAuthorizationFailedWhenEntityIsNotOrder() | ||
|
@@ -188,4 +192,4 @@ public function testSendAuthorizationFailedWhenEntityIsNotOrder() | |
'Payment card declined' | ||
); | ||
} | ||
} | ||
} |