Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
oallain authored Jun 4, 2024
1 parent ca8562e commit 99fda7f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/PHPUnit/PagesCanBeAccessedTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace PHPUnit;
namespace Tests\BootstrapTheme;

use App\Entity\Addressing\Address;
use App\Entity\Order\Order;
Expand Down Expand Up @@ -65,7 +65,7 @@ public function testAccountPagesCanBeAccessed(string $routeName, array $params):
self::assertPageTitleContains('Fashion Web Store');
}

private function guestPagesProvider(): \Generator
public function guestPagesProvider(): \Generator
{
yield 'sylius_shop_homepage' => ['sylius_shop_homepage', []];
yield 'sylius_shop_contact_request' => ['sylius_shop_contact_request', []];
Expand All @@ -82,7 +82,7 @@ private function guestPagesProvider(): \Generator
yield 'sylius_shop_cart_summary' => ['sylius_shop_cart_summary', []];
}

private function accountPagesProvider(): \Generator
public function accountPagesProvider(): \Generator
{
yield 'sylius_shop_account_dashboard' => ['sylius_shop_account_dashboard', []];
yield 'sylius_shop_account_profile_update' => ['sylius_shop_account_profile_update', []];
Expand Down

0 comments on commit 99fda7f

Please sign in to comment.