Skip to content

Commit fc3f65c

Browse files
committed
Clear configFiles before each test
1 parent c40f577 commit fc3f65c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Module/NetteDIModule.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class NetteDIModule extends Module
4848
private $path;
4949

5050
/**
51-
* @var array
51+
* @var array|null
5252
*/
5353
private $configFiles;
5454

@@ -68,6 +68,7 @@ public function _before(TestInterface $test)
6868
if ($this->config['newContainerForEachTest']) {
6969
$this->clearTempDir();
7070
$this->container = null;
71+
$this->configFiles = null;
7172
}
7273
}
7374

0 commit comments

Comments
 (0)