Skip to content

Commit 3e00f3b

Browse files
committed
merged with 2.0
2 parents 8a67e50 + 3a62ee6 commit 3e00f3b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tests/unit/Codeception/Module/SoapTest.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
use Codeception\Util\Stub as Stub;
44
use Codeception\Util\Soap as SoapUtil;
55

6+
/**
7+
* Class SoapTest
8+
* @group appveyor
9+
*/
610
class SoapTest extends \PHPUnit_Framework_TestCase
711
{
812

@@ -30,7 +34,7 @@ public function testXmlIsBuilt() {
3034
}
3135

3236
public function testBuildHeaders() {
33-
$this->module->haveSoapHeader('AuthHeader', array('username' => 'davert', 'password' => '123456'));
37+
$this->module->haveSoapHeader('AuthHeader', ['username' => 'davert', 'password' => '123456']);
3438
$dom = new \DOMDocument();
3539
$dom->load($this->layout);
3640
$header = $dom->createElement('AuthHeader');

0 commit comments

Comments
 (0)