Skip to content

Commit

Permalink
Merge branch 'master' into MAG-460
Browse files Browse the repository at this point in the history
  • Loading branch information
Ébano Penha Andrello Lopes committed Jul 30, 2019
2 parents 7e96d1f + 50b0a81 commit a1d7d09
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Test/Integration/Cases/Create/Customer/GuestTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class GuestTest extends OrderTestCase
*
* @return void
*/
public function testSendCaseGuestCustomer(): void
public function testSendCaseGuestCustomer()
{
$order = $this->placeQuote($this->getQuote('guest_quote'));

Expand Down
2 changes: 1 addition & 1 deletion Test/Integration/Cases/Create/Customer/LoggedInTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class LoggedInTest extends OrderTestCase
*
* @return void
*/
public function testSendCaseLoggedInCustomer(): void
public function testSendCaseLoggedInCustomer()
{
/** @var \Magento\Customer\Api\CustomerRepositoryInterface $customerRepository */
$customerRepository = $this->objectManager->create(CustomerRepositoryInterface::class);
Expand Down
2 changes: 1 addition & 1 deletion Test/Integration/Cases/Create/Multistore/Workflow.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class Workflow extends OrderTestCase
*
* @return void
*/
public function testSendCaseMultistoreWorkflow(): void
public function testSendCaseMultistoreWorkflow()
{
$defaultStoreIncrementId = $this->incrementId = '10-' . time();
$alternateStoreIncrementId = $this->incrementId = '40-' . time();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class AuthorizenetDirectpostTest extends OrderTestCase
/**
* @magentoDataFixture configFixture
*/
public function testCreateCaseAuthorizenetDirectpost(): void
public function testCreateCaseAuthorizenetDirectpost()
{
$ccTransId = rand(90000000000, 99999999999);
$xmlFile = __DIR__ . '/../../../_files/settings/payment/authorizenet_directpost/transaction_details_response.xml';
Expand Down
2 changes: 1 addition & 1 deletion Test/Integration/Cases/Create/Product/VirtualTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class VirtualTest extends OrderTestCase
*
* @return void
*/
public function testSendCaseVirtualProduct(): void
public function testSendCaseVirtualProduct()
{
/** @var \Magento\Sales\Model\Order $order */
$order = $this->placeQuote($this->getQuote('guest_quote'));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@
*/
class AuthorizenetDirectpostTest extends ReviewTest
{
public function testCronReviewCase(): void
public function testCronReviewCase()
{
// Bypassing test
}

/**
* @magentoDataFixture configFixture
*/
public function testRefundOrderAuthorizenetDirectpost(): void
public function testRefundOrderAuthorizenetDirectpost()
{
parent::testCronReviewCase();

Expand Down
4 changes: 2 additions & 2 deletions Test/Integration/Cases/Refund/Full/BanktransferTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@
*/
class BanktransferTest extends ReviewTest
{
public function testCronReviewCase(): void
public function testCronReviewCase()
{
// Bypassing test
}

/**
* @magentoDataFixture configFixture
*/
public function testRefundOrderBanktransfer(): void
public function testRefundOrderBanktransfer()
{
parent::testCronReviewCase();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@
*/
class AuthorizenetDirectpostTest extends ReviewTest
{
public function testCronReviewCase(): void
public function testCronReviewCase()
{
// Bypassing test
}

/**
* @magentoDataFixture configFixture
*/
public function testRefundOrderAuthorizenetDirectpost(): void
public function testRefundOrderAuthorizenetDirectpost()
{
parent::testCronReviewCase();

Expand Down
4 changes: 2 additions & 2 deletions Test/Integration/Cases/Refund/Partial/BanktransferTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@
*/
class BanktransferTest extends ReviewTest
{
public function testCronReviewCase(): void
public function testCronReviewCase()
{
// Bypassing test
}

/**
* @magentoDataFixture configFixture
*/
public function testRefundOrderBanktransfer(): void
public function testRefundOrderBanktransfer()
{
parent::testCronReviewCase();

Expand Down
2 changes: 1 addition & 1 deletion Test/Integration/Cases/Webhook/ReviewTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class ReviewTest extends OrderTestCase
/**
* @magentoDataFixture configFixture
*/
public function testWebhookReviewCase(): void
public function testWebhookReviewCase()
{
$this->placeQuote($this->getQuote('guest_quote'));

Expand Down

0 comments on commit a1d7d09

Please sign in to comment.