diff options
author | Hannes Kindströmmer <hannes@kindstrommer.se> | 2017-03-20 14:24:10 +0100 |
---|---|---|
committer | Hannes Kindströmmer <hannes@kindstrommer.se> | 2017-03-20 14:24:10 +0100 |
commit | 7f5f81e23de3f7737bd86ca9318c53dbd20de5a9 (patch) | |
tree | 8def0379c4cb74d0ea17286e0e1a144b6796b974 | |
parent | c8c8b07defa36b00e79233ceec16e89e1597d6a4 (diff) | |
download | ip1-php-sdk-7f5f81e23de3f7737bd86ca9318c53dbd20de5a9.zip ip1-php-sdk-7f5f81e23de3f7737bd86ca9318c53dbd20de5a9.tar.gz ip1-php-sdk-7f5f81e23de3f7737bd86ca9318c53dbd20de5a9.tar.bz2 |
Test correction number 5
Signed-off-by: Hannes Kindströmmer <hannes@kindstrommer.se>
-rw-r--r-- | tests/Recipient/BlacklistTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Recipient/BlacklistTest.php b/tests/Recipient/BlacklistTest.php index 6b37931..8cca72d 100644 --- a/tests/Recipient/BlacklistTest.php +++ b/tests/Recipient/BlacklistTest.php @@ -41,7 +41,7 @@ class BlacklistTest extends AbstractEnviromentProvider $blackListEntry = $this->getCommunicator()->remove($entry); $this->assertEquals($entry->getID(), $blackListEntry->getID()); $this->assertEquals($entry->getCreated(), $blackListEntry->getCreated()); - $this->assertEquals($entry->getPhoneNumber()(), $blackListEntry->getPhoneNumber()); + $this->assertEquals($entry->getPhoneNumber(), $blackListEntry->getPhoneNumber()); return $blackListEntry; } public function tearDown() |