Skip to content

Commit

Permalink
test: fix temporary test files being picked up by version control
Browse files Browse the repository at this point in the history
  • Loading branch information
EdieLemoine committed Jul 4, 2024
1 parent 1f6ff7d commit 0979cb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Bootstrap/MockAbstractLanguageService.php
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,6 @@ public function setTranslations(string $language, array $translations): void
*/
protected function getFilePath(?string $language = null): string
{
return sprintf('%s/../../config/.tmp-translations%s', __DIR__, $language ? "-$language" : '');
return sprintf('%s/../../.tmp/.tmp-translations%s', __DIR__, $language ? "-$language" : '');
}
}

0 comments on commit 0979cb4

Please sign in to comment.