Skip to content

Commit 695792b

Browse files
authored
Merge pull request #420 from szepeviktor/patch-1
2 parents 979d18d + 72b3ac1 commit 695792b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/TranslatableTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -676,14 +676,14 @@ public function can_get_translations_as_array(): void
676676
}
677677

678678
#[Test]
679-
public function fill_will_ignore_unkown_locales(): void
679+
public function fill_will_ignore_unknown_locales(): void
680680
{
681681
config(['translatable.locales' => ['en']]);
682682

683683
$vegetable = new Vegetable();
684684
$vegetable->fill([
685685
'en' => ['name' => 'Peas'],
686-
'ua' => ['name' => 'Unkown'],
686+
'ua' => ['name' => 'unknown'],
687687
]);
688688
$vegetable->save();
689689

@@ -696,14 +696,14 @@ public function fill_will_ignore_unkown_locales(): void
696696
}
697697

698698
#[Test]
699-
public function fill_will_ignore_unkown_locales_with_translations(): void
699+
public function fill_will_ignore_unknown_locales_with_translations(): void
700700
{
701701
config(['translatable.locales' => ['en']]);
702702

703703
$vegetable = new Vegetable();
704704
$vegetable->fill([
705705
'name:en' => 'Peas',
706-
'name:ua' => 'Unkown',
706+
'name:ua' => 'unknown',
707707
]);
708708

709709
$vegetable->save();

0 commit comments

Comments
 (0)