Add fixes for broken edit channel page

This commit is contained in:
Tomanhez 2020-05-20 11:05:36 +02:00
parent 4601734308
commit 4a8bc95889
2 changed files with 3 additions and 3 deletions

View file

@ -46,7 +46,7 @@ sylius_fixtures:
- 'PT'
- 'ES'
- 'CN'
- 'UK'
- 'GB'
zones:
US:
name: 'United States of America'
@ -65,7 +65,7 @@ sylius_fixtures:
- 'PT'
- 'ES'
- 'CN'
- 'UK'
- 'GB'
menu_taxon:
name: taxon

View file

@ -61,7 +61,7 @@ final class StorageBasedLocaleContextSpec extends ObjectBehavior
$localeStorage->get($channel)->willReturn('pl_PL');
$localeProvider->getAvailableLocalesCodes()->willReturn(['en_US', 'en_UK']);
$localeProvider->getAvailableLocalesCodes()->willReturn(['en_US', 'en_GB']);
$this->shouldThrow(LocaleNotFoundException::class)->during('getLocaleCode');
}