Browse Source

Ignore unlink() warning

pull/9276/head
Aleksander Machniak 2 years ago
parent
commit
97c618122d
  1. 2
      tests/ActionTestCase.php

2
tests/ActionTestCase.php

@ -113,7 +113,7 @@ class ActionTestCase extends PHPUnit\Framework\TestCase
$db->closeConnection();
// delete database file
unlink($dsn['database']);
@unlink($dsn['database']);
// load sample test data
self::loadSQLScript($db, 'init');

Loading…
Cancel
Save