Skip to content
This repository has been archived by the owner on Jun 18, 2019. It is now read-only.

Commit

Permalink
fix unittest
Browse files Browse the repository at this point in the history
  • Loading branch information
Gummibeer committed May 31, 2019
1 parent 4c6f902 commit 8ca48d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/TranslatableTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -767,8 +767,8 @@ protected function isEmptyTranslatableAttribute(string $key, $value): bool
};
$city->fill([
'country_id' => Country::first()->getKey(),
'en' => ['name' => 0],
'de' => ['name' => 1],
'en' => ['name' => '0'],
'de' => ['name' => '1'],
'fr' => ['name' => null],
]);
$city->save();
Expand Down

0 comments on commit 8ca48d4

Please sign in to comment.