Skip to content

Commit

Permalink
Merge branch '5.10.x'
Browse files Browse the repository at this point in the history
Signed-off-by: Maurício Meneghini Fauth <[email protected]>
  • Loading branch information
MauricioFauth committed Aug 25, 2024
2 parents d607430 + f6d0619 commit 3e6d4f2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/Components/Array2dTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,16 @@ public function testParseErr1(): void
{
$parser = new Parser();
Array2d::parse($parser, $this->getTokensList('(1, 2 +'));

$this->markTestIncomplete('This test has not been implemented yet.');
$this->assertCount(1, $parser->errors);
$this->assertEquals('A closing bracket was expected.', $parser->errors[0]->getMessage());
}

public function testParseErr2(): void
{
$parser = new Parser();
Array2d::parse($parser, $this->getTokensList('(1, 2 TABLE'));

$this->markTestIncomplete('This test has not been implemented yet.');
$this->assertCount(1, $parser->errors);
$this->assertEquals('A closing bracket was expected.', $parser->errors[0]->getMessage());
}

public function testParseErr3(): void
Expand Down

0 comments on commit 3e6d4f2

Please sign in to comment.