Skip to content

Commit

Permalink
Revert "Customer related values are NULL for guests"
Browse files Browse the repository at this point in the history
This reverts commit ccba420
  • Loading branch information
Nazar65 committed Nov 16, 2018
1 parent ccba420 commit 7607c82
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,9 @@ public function testSetCustomerData(): void
$customer = $quote->getCustomer();
$this->assertEquals($expected, $this->convertToArray($customer));
$this->assertEquals('qa@example.com', $quote->getCustomerEmail());
$this->assertEquals('Joe', $quote->getCustomerFirstname());
$this->assertEquals('Dou', $quote->getCustomerLastname());
$this->assertEquals('Ivan', $quote->getCustomerMiddlename());
}

/**
Expand Down

0 comments on commit 7607c82

Please sign in to comment.