Skip to content

Commit a62b20e

Browse files
committed
MAGETWO-34541: Prepare PR
- fix L3 tests
1 parent 8b8aba6 commit a62b20e

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

app/code/Magento/Bundle/composer.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,12 @@
1717
"magento/module-eav": "0.42.0-beta10",
1818
"magento/module-gift-message": "0.42.0-beta10",
1919
"magento/framework": "0.42.0-beta10",
20-
"magento/module-webapi": "0.42.0-beta10",
2120
"magento/module-quote": "0.42.0-beta10",
2221
"magento/magento-composer-installer": "*"
2322
},
23+
"suggest": {
24+
"magento/module-webapi": "0.42.0-beta10"
25+
},
2426
"type": "magento2-module",
2527
"version": "0.42.0-beta10",
2628
"license": [

app/code/Magento/ConfigurableProduct/composer.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,12 @@
1515
"magento/module-catalog-rule": "0.42.0-beta10",
1616
"magento/module-directory": "0.42.0-beta10",
1717
"magento/framework": "0.42.0-beta10",
18-
"magento/module-webapi": "0.42.0-beta10",
1918
"magento/module-quote": "0.42.0-beta10",
2019
"magento/magento-composer-installer": "*"
2120
},
21+
"suggest": {
22+
"magento/module-webapi": "0.42.0-beta10"
23+
},
2224
"type": "magento2-module",
2325
"version": "0.42.0-beta10",
2426
"license": [

app/code/Magento/Integration/Service/V1/AdminTokenService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public function createAdminAccessToken($username, $password)
8282
*/
8383
throw new AuthenticationException('Please correct the user name or password.');
8484
}
85-
} catch (\Magento\Backend\Model\Auth\Exception $e) {
85+
} catch (\Magento\Framework\Exception\AuthenticationException $e) {
8686
throw new AuthenticationException($e->getMessage(), [], $e);
8787
} catch (\Magento\Framework\Model\Exception $e) {
8888
throw new LocalizedException($e->getMessage(), [], $e);

app/code/Magento/Webapi/composer.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
"php": "~5.5.0|~5.6.0",
66
"magento/module-store": "0.42.0-beta10",
77
"magento/module-authorization": "0.42.0-beta10",
8-
"magento/module-core": "0.42.0-beta10",
98
"magento/module-integration": "0.42.0-beta10",
109
"magento/module-backend": "0.42.0-beta10",
1110
"magento/framework": "0.42.0-beta10",

app/code/Magento/Webapi/etc/module.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../lib/internal/Magento/Framework/Module/etc/module.xsd">
99
<module name="Magento_Webapi" schema_version="2.0.0">
1010
<sequence>
11-
<module name="Magento_Core"/>
1211
<module name="Magento_Store"/>
1312
<module name="Magento_Integration"/>
1413
<module name="Magento_Backend"/>

0 commit comments

Comments
 (0)