Skip to content

Commit

Permalink
MAGETWO-44491: [TD] ActionInterface has Method dispatch() Instead of …
Browse files Browse the repository at this point in the history
…execute()

    - Fix merge error
  • Loading branch information
Yu Tang committed Oct 28, 2015
1 parent b12c316 commit 4b9a7c7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ protected function setUp()
]);
}

public function testExecute()
public function testExecuteInternal()
{
$this->viewMock->expects($this->once())
->method('getPage')
Expand All @@ -110,6 +110,6 @@ public function testExecute()
->method('prepend')
->willReturnSelf();

$this->assertNull($this->object->execute());
$this->assertNull($this->object->executeInternal());
}
}

0 comments on commit 4b9a7c7

Please sign in to comment.