Skip to content

Commit

Permalink
Integration test fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Atul-glo35265 committed Mar 19, 2024
1 parent 5608b96 commit ae8ed02
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
* See COPYING.txt for license details.
*/

$this->objectManager = \Magento\TestFramework\Helper\Bootstrap::getObjectManager();
$objectManager = \Magento\TestFramework\Helper\Bootstrap::getObjectManager();

/** @var \Magento\Variable\Model\ResourceModel\Variable $variableResource */
$variableResource = $this->objectManager->get(\Magento\Variable\Model\ResourceModel\Variable::class);
$variableResource = $objectManager->get(\Magento\Variable\Model\ResourceModel\Variable::class);

/** @var \Magento\Variable\Model\Variable $variable */
$variable = $this->objectManager->get(\Magento\Variable\Model\Variable::class);
$variable = $objectManager->get(\Magento\Variable\Model\Variable::class);

$variable->setData([
'code' => 'xssVariable',
Expand Down

0 comments on commit ae8ed02

Please sign in to comment.