File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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 ();
You can’t perform that action at this time.
0 commit comments