From 4b9a7c7cbacc76d3b45094d5e3197f193467d33a Mon Sep 17 00:00:00 2001 From: Yu Tang Date: Wed, 28 Oct 2015 16:36:47 -0500 Subject: [PATCH] MAGETWO-44491: [TD] ActionInterface has Method dispatch() Instead of execute() - Fix merge error --- .../Unit/Controller/Adminhtml/Email/Template/PreviewTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/code/Magento/Email/Test/Unit/Controller/Adminhtml/Email/Template/PreviewTest.php b/app/code/Magento/Email/Test/Unit/Controller/Adminhtml/Email/Template/PreviewTest.php index 59fccebfe3858..e1f80f7f1336e 100644 --- a/app/code/Magento/Email/Test/Unit/Controller/Adminhtml/Email/Template/PreviewTest.php +++ b/app/code/Magento/Email/Test/Unit/Controller/Adminhtml/Email/Template/PreviewTest.php @@ -95,7 +95,7 @@ protected function setUp() ]); } - public function testExecute() + public function testExecuteInternal() { $this->viewMock->expects($this->once()) ->method('getPage') @@ -110,6 +110,6 @@ public function testExecute() ->method('prepend') ->willReturnSelf(); - $this->assertNull($this->object->execute()); + $this->assertNull($this->object->executeInternal()); } }