Skip to content

Commit

Permalink
⏫ Forwardport of #11410 to 2.3-develop branch
Browse files Browse the repository at this point in the history
Applied pull request patch https://github.com/magento/magento2/pull/11410.patch (created by @crissanclick) based on commit(s):
  1. 6862db0
  2. 4c698c2

Fixed GitHub Issues in 2.3-develop branch:
  - #11365: "Ignore this notification" isn't working (reported by @sigismund)
  • Loading branch information
magento-engcom-team committed Jan 23, 2018
1 parent 8e77e2f commit ad6c0af
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ public function execute()
}

// clear the block html cache
$this->_cacheTypeList->cleanType('block_html');
$this->_eventManager->dispatch('adminhtml_cache_refresh_type', ['type' => 'block_html']);
$this->_cacheTypeList->cleanType('config');
$this->_eventManager->dispatch('adminhtml_cache_refresh_type', ['type' => 'config']);

/** @var \Magento\Backend\Model\View\Result\Redirect $resultRedirect */
$resultRedirect = $this->resultFactory->create(ResultFactory::TYPE_REDIRECT);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public function testExecute()
->getMock();
$cacheTypeList->expects($this->once())
->method('cleanType')
->with('block_html')
->with('config')
->willReturn(null);

$request = $this->getMockBuilder(\Magento\Framework\App\Request\Http::class)
Expand Down

0 comments on commit ad6c0af

Please sign in to comment.