diff --git a/tests/Jejik/Tests/MT940/Parser/ParibasTest.php b/tests/Jejik/Tests/MT940/Parser/ParibasTest.php index efd1d0e..d631243 100644 --- a/tests/Jejik/Tests/MT940/Parser/ParibasTest.php +++ b/tests/Jejik/Tests/MT940/Parser/ParibasTest.php @@ -73,7 +73,7 @@ public function testTransaction() $this->assertNull($transactions[0]->getExtCode()); $this->assertEquals(null, $transactions[0]->getBIC()); $this->assertEquals(null, $transactions[0]->getIBAN()); - $this->assertEquals(INVOICE, $transactions[0]->getAccountHolder()); + $this->assertEquals('INVOICE', $transactions[0]->getAccountHolder()); $this->assertEquals('BNPP Fees - 202408DE12345672 - 07/2024/', $transactions[0]->getRawSubfieldsData()); } } diff --git a/tests/Jejik/Tests/MT940/ReaderTest.php b/tests/Jejik/Tests/MT940/ReaderTest.php index 18d8c54..f456b9e 100644 --- a/tests/Jejik/Tests/MT940/ReaderTest.php +++ b/tests/Jejik/Tests/MT940/ReaderTest.php @@ -39,7 +39,7 @@ public function testDefaultParsers() $this->assertTrue($e->getMessage() === 'No text is found for parsing.'); } - $this->assertCount(20, $reader->getDefaultParsers()); + $this->assertCount(21, $reader->getDefaultParsers()); } public function testAddParser()