Skip to content

Commit

Permalink
fix(deps): update dependency spatie/laravel-translatable to v6.9.3 (#…
Browse files Browse the repository at this point in the history
…2444)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Jan 7, 2025
1 parent 2673335 commit 1b78339
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions tests/Feature/View/Components/InterpretationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
expect($interpretation)->toBeInstanceOf(Interpretation::class);
expect($interpretation->route)->toBe('welcome');
expect($interpretation->namespace)->toBe('welcome');
expect($interpretation->getTranslation('video', 'asl'))->toBeNull();
expect($interpretation->getTranslation('video', 'lsq'))->toBeNull();
expect($interpretation->getTranslation('video', 'asl'))->toBe('');
expect($interpretation->getTranslation('video', 'lsq'))->toBe('');
});

test('existing Interpretation instance', function () {
Expand Down

0 comments on commit 1b78339

Please sign in to comment.