Skip to content

Commit

Permalink
Fix unittest after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
andernath committed Oct 23, 2024
1 parent 7c570ef commit 3918553
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/TestClassDatabaseChanges.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public function testInstall(): array
$this->assertGreaterThanOrEqual(self::NUM_NEW_TABLES, count($this->_createQueries));

$dbversion = $this->_pDbChanges->getDbVersion();
$this->assertEquals(53, $dbversion);
$this->assertEquals(54, $dbversion);
return $this->_createQueries;
}

Expand Down Expand Up @@ -272,7 +272,7 @@ public function testDeleteMessageFieldApplicantSearchForm()
*/
public function testMaxVersion()
{
$this->assertEquals(53, DatabaseChanges::MAX_VERSION);
$this->assertEquals(54, DatabaseChanges::MAX_VERSION);
}


Expand Down

0 comments on commit 3918553

Please sign in to comment.