Skip to content

Commit

Permalink
Pass tests?
Browse files Browse the repository at this point in the history
  • Loading branch information
jesseleite committed May 2, 2024
1 parent 8060584 commit 9d6c3bf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/MigrateSettingsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ public function it_migrates_system_settings()
{
$this->artisan('statamic:migrate:settings', ['handle' => 'system']);

$this->assertSame(File::get(resource_path('sites.yaml')),
$this->assertSameWithNormalizedLineEndings(File::get(resource_path('sites.yaml')),
'default:
name: English
locale: en_US
Expand All @@ -191,7 +191,7 @@ public function it_migrates_multiple_locales_with_env_references()

$this->artisan('statamic:migrate:settings', ['handle' => 'system']);

$this->assertSame(File::get(resource_path('sites.yaml')),
$this->assertSameWithNormalizedLineEndings(File::get(resource_path('sites.yaml')),
"default:
name: English
locale: en_US
Expand All @@ -210,7 +210,7 @@ public function it_migrates_missing_locales_using_v2_default()

$this->artisan('statamic:migrate:settings', ['handle' => 'system']);

$this->assertSame(File::get(resource_path('sites.yaml')),
$this->assertSameWithNormalizedLineEndings(File::get(resource_path('sites.yaml')),
'default:
name: English
locale: en_US
Expand Down

0 comments on commit 9d6c3bf

Please sign in to comment.