Skip to content

Commit b56448b

Browse files
fix: Rename duplicate test method to testPrepareCardAssignedUsesRedirectUrl
Addresses review feedback: the added test method had the same name as an existing method with a data provider, causing a duplicate function declaration. Renamed to testPrepareCardAssignedUsesRedirectUrl to clarify its purpose (verifying that card-assigned notifications use the redirect URL pattern).
1 parent 13a852e commit b56448b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unit/Notification/NotifierTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ public function testPrepareBoardShared($withUserFound = true) {
355355
$this->assertEquals($notification, $actualNotification);
356356
}
357357

358-
public function testPrepareCardAssigned() {
358+
public function testPrepareCardAssignedUsesRedirectUrl() {
359359
/** @var INotification|MockObject $notification */
360360
$notification = $this->createMock(INotification::class);
361361
$notification->expects($this->once())

0 commit comments

Comments
 (0)