Skip to content

Commit

Permalink
MAGETWO-32341: [GITHUB] Configurable product attribute scope #866
Browse files Browse the repository at this point in the history
- Update copyright string
- Fix unit test to remove deprecated method call
  • Loading branch information
igrybkov committed Jan 19, 2015
1 parent 1bcd926 commit 17639be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<?php
/**
*
* @copyright Copyright (c) 2014 X.commerce, Inc. (http://www.magentocommerce.com)
* Copyright © 2015 Magento. All rights reserved.
* See COPYING.txt for license details.
*/

$installer = $this;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,6 @@ public function testCanUseAttribute()
[
'getIsGlobal',
'getIsVisible',
'getIsConfigurable',
'usesSource',
'getIsUserDefined',
'__wakeup',
Expand All @@ -270,9 +269,6 @@ public function testCanUseAttribute()
$attribute->expects($this->once())
->method('getIsVisible')
->will($this->returnValue(1));
$attribute->expects($this->once())
->method('getIsConfigurable')
->will($this->returnValue(1));
$attribute->expects($this->once())
->method('usesSource')
->will($this->returnValue(1));
Expand Down

0 comments on commit 17639be

Please sign in to comment.