Skip to content

Commit 3a54696

Browse files
authored
Bump codeception/util-universalframework version (#20)
1 parent 0b92c8f commit 3a54696

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"codeception/lib-xml": "^1.0"
2020
},
2121
"require-dev": {
22-
"codeception/util-universalframework": "^1.0",
22+
"codeception/util-universalframework": "^2.0",
2323
"codeception/stub": "^4.0"
2424
},
2525
"autoload": {

tests/unit/Codeception/Module/SoapTest.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,10 @@ final class SoapTest extends TestCase
2424
public function _setUp()
2525
{
2626
$container = Stub::make(ModuleContainer::class);
27-
$frameworkModule = new UniversalFramework($container);
28-
$frameworkModule->client = Stub::makeEmpty(Universal::class);
27+
$frameworkModule = new UniversalFramework($container, [
28+
'index' => '',
29+
]);
30+
$frameworkModule->_initialize();
2931
$this->module = new SOAP($container);
3032
$this->module->_setConfig(array(
3133
'schema' => 'http://www.w3.org/2001/xml.xsd',

0 commit comments

Comments
 (0)