Skip to content

Commit

Permalink
Merge pull request #308 from magento-falcons/MAGETWO-57826
Browse files Browse the repository at this point in the history
Bug Fixes:
MAGETWO-56530: Magento\ConfigurableImportExport\Model\ConfigurableTest::testImportReplace integration test fail
MAGETWO-53549: [Github][PR] Replace fabpot/php-cs-fixer with friendsofphp/php-cs-fixer
  • Loading branch information
magicbunneh authored Sep 5, 2016
2 parents c869e6f + a97eb09 commit d0495a9
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -544,4 +544,12 @@ public function setWriter(AbstractAdapter $writer)

return $this;
}

/**
* Clean cached values
*/
public function __destruct()
{
self::$attrCodes = null;
}
}
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
"squizlabs/php_codesniffer": "1.5.3",
"phpmd/phpmd": "@stable",
"pdepend/pdepend": "2.2.2",
"fabpot/php-cs-fixer": "~1.2",
"friendsofphp/php-cs-fixer": "~1.2",
"lusitanian/oauth": "~0.3 <=0.7.0",
"sebastian/phpcpd": "2.0.0"
},
Expand Down
7 changes: 3 additions & 4 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ public function importReplaceDataProvider()
*/
public function testImportReplace($fixtures, $skus, $skippedAttributes = [])
{
$this->markTestSkipped('MAGETWO-56530');
parent::testImportReplace($fixtures, $skus, $skippedAttributes);
}
}

0 comments on commit d0495a9

Please sign in to comment.