Skip to content

Commit

Permalink
corrected small things after last PR
Browse files Browse the repository at this point in the history
  • Loading branch information
Dominic Richter committed Dec 4, 2024
1 parent a9fb23f commit e316ced
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/Jejik/Tests/MT940/Parser/ParibasTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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());
}
}
2 changes: 1 addition & 1 deletion tests/Jejik/Tests/MT940/ReaderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit e316ced

Please sign in to comment.