Skip to content

Commit 17639be

Browse files
committed
MAGETWO-32341: [GITHUB] Configurable product attribute scope #866
- Update copyright string - Fix unit test to remove deprecated method call
1 parent 1bcd926 commit 17639be

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

app/code/Magento/ConfigurableProduct/sql/configurableproduct_setup/install-2.0.1.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
<?php
22
/**
33
*
4-
* @copyright Copyright (c) 2014 X.commerce, Inc. (http://www.magentocommerce.com)
4+
* Copyright © 2015 Magento. All rights reserved.
5+
* See COPYING.txt for license details.
56
*/
67

78
$installer = $this;

dev/tests/unit/testsuite/Magento/ConfigurableProduct/Model/Product/Type/ConfigurableTest.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,6 @@ public function testCanUseAttribute()
254254
[
255255
'getIsGlobal',
256256
'getIsVisible',
257-
'getIsConfigurable',
258257
'usesSource',
259258
'getIsUserDefined',
260259
'__wakeup',
@@ -270,9 +269,6 @@ public function testCanUseAttribute()
270269
$attribute->expects($this->once())
271270
->method('getIsVisible')
272271
->will($this->returnValue(1));
273-
$attribute->expects($this->once())
274-
->method('getIsConfigurable')
275-
->will($this->returnValue(1));
276272
$attribute->expects($this->once())
277273
->method('usesSource')
278274
->will($this->returnValue(1));

0 commit comments

Comments
 (0)