We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1631b80 commit f9c6a6dCopy full SHA for f9c6a6d
tests/system/Commands/CreateDatabaseTest.php
@@ -31,21 +31,23 @@ final class CreateDatabaseTest extends CIUnitTestCase
31
32
protected function setUp(): void
33
{
34
+ parent::setUp();
35
+
36
CITestStreamFilter::$buffer = '';
37
38
$this->streamFilter = stream_filter_append(STDOUT, 'CITestStreamFilter');
39
$this->streamFilter = stream_filter_append(STDERR, 'CITestStreamFilter');
40
$this->connection = Database::connect();
41
- parent::setUp();
42
$this->dropDatabase();
43
}
44
45
protected function tearDown(): void
46
47
+ parent::tearDown();
48
49
stream_filter_remove($this->streamFilter);
50
- parent::tearDown();
51
52
53
0 commit comments