Skip to content

Commit 142b2ae

Browse files
author
rossbrandon
committed
MAGETWO-85063: Create a framework for dynamically composing what's new content
1 parent b5aff86 commit 142b2ae

File tree

1 file changed

+0
-3
lines changed
  • dev/tests/integration/testsuite/Magento/ReleaseNotification/Controller/Adminhtml/Dashboard

1 file changed

+0
-3
lines changed

dev/tests/integration/testsuite/Magento/ReleaseNotification/Controller/Adminhtml/Dashboard/IndexTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ public function testExecute()
4747
CacheCleaner::cleanAll();
4848
$this->contentProviderMock->expects($this->any())
4949
->method('getContent')
50-
->with('2.3.0', 'Community', 'en_US')
5150
->willReturn($content);
5251

5352
$this->dispatch('backend/admin/dashboard/index/');
@@ -66,7 +65,6 @@ public function testExecuteEmptyContent()
6665
CacheCleaner::cleanAll();
6766
$this->contentProviderMock->expects($this->any())
6867
->method('getContent')
69-
->with('2.3.0', 'Community', 'en_US')
7068
->willReturn('[]');
7169

7270
$this->dispatch('backend/admin/dashboard/index/');
@@ -82,7 +80,6 @@ public function testExecuteFalseContent()
8280
CacheCleaner::cleanAll();
8381
$this->contentProviderMock->expects($this->any())
8482
->method('getContent')
85-
->with('2.3.0', 'Community', 'en_US')
8683
->willReturn(false);
8784

8885
$this->dispatch('backend/admin/dashboard/index/');

0 commit comments

Comments
 (0)