Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
askdkc authored and github-actions[bot] committed Jan 16, 2024
1 parent fdba968 commit 1aca61c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/CommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
->expectsOutput('日本語ファイルのインストールが完了しました!')
->assertExitCode(0);

if (11 <= (int) substr(Illuminate\Foundation\Application::VERSION, 0, 2)) {
if ((int) substr(Illuminate\Foundation\Application::VERSION, 0, 2) >= 11) {
$configfile = file_get_contents(base_path('config/app.php'));
$this->assertStringContainsString("'locale' => 'ja'", $configfile);
$this->assertStringContainsString("'faker_locale' => 'ja_JP'", $configfile);
Expand Down

0 comments on commit 1aca61c

Please sign in to comment.