Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/Language/AbstractTranslationTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ abstract class AbstractTranslationTestCase extends TestCase
// DutchTranslationTest::class => 'nl',
// NorwegianTranslationTest::class => 'no',
// PolishTranslationTest::class => 'pl',
// PortugueseTranslationTest::class => 'pt',
PortugueseTranslationTest::class => 'pt',
Comment thread
datamweb marked this conversation as resolved.
Outdated
BrazilianTranslationTest::class => 'pt-BR',
Comment thread
datamweb marked this conversation as resolved.
Outdated
// RussianTranslationTest::class => 'ru',
// SinhalaTranslationTest::class => 'si',
Expand Down
15 changes: 15 additions & 0 deletions tests/Language/PortugueseTranslationTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?php

declare(strict_types=1);

namespace Tests\Language;

/**
* @internal
*/
final class PortugueseTranslationTest extends AbstractTranslationTestCase
{
protected array $excludedLocaleKeyTranslations = [
'Auth.login',
];
}