diff --git a/tests/Factories/TranslationFactoryTest.php b/tests/Factories/TranslationFactoryTest.php index a8123fb..1412071 100644 --- a/tests/Factories/TranslationFactoryTest.php +++ b/tests/Factories/TranslationFactoryTest.php @@ -31,6 +31,7 @@ class TranslationFactoryTest extends TestCase $this->assertInstanceOf(MessageCatalogue::class, $translator->getCatalogue('pt-BR')); $this->assertInstanceOf(MessageCatalogue::class, $translator->getCatalogue('ro')); $this->assertInstanceOf(MessageCatalogue::class, $translator->getCatalogue('ru')); + $this->assertInstanceOf(MessageCatalogue::class, $translator->getCatalogue('sv')); $this->assertInstanceOf(MessageCatalogue::class, $translator->getCatalogue('tr')); $this->assertInstanceOf(MessageCatalogue::class, $translator->getCatalogue('zh-CN')); $this->assertInstanceOf(MessageCatalogue::class, $translator->getCatalogue('zh-TW'));