Skip to content

Commit 97bfad0

Browse files
author
cspruiell
committed
MAGETWO-66882: Allowing Web API listing to be public - 2.2
- fix static test failures
1 parent e7420c4 commit 97bfad0

File tree

1 file changed

+3
-3
lines changed
  • dev/tests/integration/testsuite/Magento/Webapi/Controller

1 file changed

+3
-3
lines changed

dev/tests/integration/testsuite/Magento/Webapi/Controller/SoapTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/**
3-
* Copyright © 2013-2017 Magento, Inc. All rights reserved.
3+
* Copyright © Magento, Inc. All rights reserved.
44
* See COPYING.txt for license details.
55
*/
66

@@ -33,7 +33,7 @@ public function testDispatchWsdlRequest()
3333
$request->setParam(\Magento\Webapi\Model\Soap\Server::REQUEST_PARAM_LIST_WSDL, true);
3434
$response = $this->soapController->dispatch($request);
3535
$decoded_wsdl = json_decode($response->getContent(), true);
36-
$this->assertArrayHasKey("customerAccountManagementV1", $decoded_wsdl );
37-
$this->assertArrayHasKey("integrationAdminTokenServiceV1", $decoded_wsdl );
36+
$this->assertArrayHasKey("customerAccountManagementV1", $decoded_wsdl);
37+
$this->assertArrayHasKey("integrationAdminTokenServiceV1", $decoded_wsdl);
3838
}
3939
}

0 commit comments

Comments
 (0)