Skip to content

Commit

Permalink
Fixed TransportBuilderTest
Browse files Browse the repository at this point in the history
  • Loading branch information
Graham Wharton committed Oct 16, 2018
1 parent 491d7f1 commit 490e5d2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ public function getTransportDataProvider()
/**
* @return void
*/
public function testSetFrom()
public function testSetFromByStore()
{
$sender = ['email' => 'from@example.com', 'name' => 'name'];
$store = 1;
Expand All @@ -173,7 +173,7 @@ public function testSetFrom()
->with($sender, $store)
->willReturn($sender);
$this->messageMock->expects($this->once())
->method('setFromByStore')
->method('setFrom')
->with('from@example.com', 'name')
->willReturnSelf();

Expand Down

0 comments on commit 490e5d2

Please sign in to comment.