Skip to content

Commit e61e7e8

Browse files
committed
Fix
1 parent 48592dd commit e61e7e8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/ServiceProviderTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public function testMigrationsCanBePublished()
1919
$result = Artisan::call('vendor:publish', [
2020
'--tag' => 'laravel-scim-migrations',
2121
'--provider' => ServiceProvider::class,
22-
'--dry-run' => true,
22+
'--force' => true,
2323
]);
2424

2525
// The command should succeed (return 0)
@@ -32,7 +32,7 @@ public function testConfigCanBePublished()
3232
$result = Artisan::call('vendor:publish', [
3333
'--tag' => 'laravel-scim',
3434
'--provider' => ServiceProvider::class,
35-
'--dry-run' => true,
35+
'--force' => true,
3636
]);
3737

3838
// The command should succeed (return 0)

0 commit comments

Comments
 (0)