php unit: don't enforce a name on the test database

Also gets rid of a PHPUnit deprecation warning.
This commit is contained in:
Sarah Hoffmann
2021-12-07 11:31:45 +01:00
parent 6106f1a32e
commit b7554d9ed8

View File

@@ -132,12 +132,6 @@ class DBTest extends \PHPUnit\Framework\TestCase
getenv('UNIT_TEST_DSN') :
'pgsql:dbname=nominatim_unit_tests';
$this->assertRegExp(
'/unit_test/',
$unit_test_dsn,
'Test database will get destroyed, thus should have a name like unit_test to be safe'
);
## Create the database.
{
$aDSNParsed = \Nominatim\DB::parseDSN($unit_test_dsn);