Skip to content

Commit 61c635c

Browse files
committed
fix test
1 parent 4eb4423 commit 61c635c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/Services/NotificationManager/NotificationManagerTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public function testLoggedEmail()
2727
$notificationManager = new NotificationManager;
2828
$notificationManager->setClient($client);
2929

30-
$response = $notificationManager->send("logged_email", $data);
30+
$response = $notificationManager->send($data);
3131

3232
$this->assertEquals($responseExpected, (array)$response);
3333
}
@@ -45,7 +45,7 @@ public function testLoggedEmailPermanentException()
4545
$notificationManager = new NotificationManager;
4646
$notificationManager->setClient($client);
4747

48-
$response = $notificationManager->send("logged_email", $data);
48+
$response = $notificationManager->send($data);
4949
}
5050

5151
public function testLoggedEmailTemporaryException()
@@ -61,6 +61,6 @@ public function testLoggedEmailTemporaryException()
6161
$notificationManager = new NotificationManager;
6262
$notificationManager->setClient($client);
6363

64-
$response = $notificationManager->send("logged_email", $data);
64+
$response = $notificationManager->send($data);
6565
}
6666
}

0 commit comments

Comments
 (0)