Skip to content

Commit 1ada02b

Browse files
committed
Fixed constructor
1 parent 49fa139 commit 1ada02b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Codeception/Module/Nette.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ class Nette extends \Codeception\Util\Framework
1616
public function __construct($config = array())
1717
{
1818
$this->requiredFields = array('tempDir');
19-
$this->defaultConfig = array(
19+
$this->config = array(
2020
'configFiles' => array(),
2121
'robotLoader' => array(),
2222
);
23-
$this->_reconfigure($config);
23+
parent::__construct($config);
2424
}
2525

2626
protected function validateConfig()

0 commit comments

Comments
 (0)