Skip to content

Commit

Permalink
Update test to match reality
Browse files Browse the repository at this point in the history
  • Loading branch information
svenluijten committed Aug 11, 2023
1 parent f334916 commit d0363e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Feature/EnvSyncTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public function it_can_show_the_changes_it_would_make_in_a_dry_run(): void
$this->artisan('env:sync', ['--dry-run' => true])
->expectsOutput('This would add the following variables to the environment file:')
->expectsTable(['Key', 'Value'], [['I_AM_NEW', '']])
->expectsOutput('Run with "--force" to make these changes.')
->expectsOutput('Run without "--dry-run" to make these changes.')
->assertExitCode(0);
}

Expand Down

0 comments on commit d0363e5

Please sign in to comment.