diff --git a/tests/Feature/Generators/ConsoleGeneratorTest.php b/tests/Feature/Generators/ConsoleGeneratorTest.php index 802f7da3..2eca2c86 100644 --- a/tests/Feature/Generators/ConsoleGeneratorTest.php +++ b/tests/Feature/Generators/ConsoleGeneratorTest.php @@ -24,7 +24,7 @@ public function it_can_generate_command_file() 'namespace App\Console\Commands;', 'use Orchestra\Canvas\Core\Commands\Generator;', 'class FooCommand extends Generator', - 'protected $signature = \'make:name\';', + 'protected $name = \'make:name\';', ], 'app/Console/Commands/FooCommand.php'); } @@ -42,7 +42,7 @@ public function it_can_generate_command_file_with_command_name() 'namespace App\Console\Commands;', 'use Orchestra\Canvas\Core\Commands\Generator;', 'class FooCommand extends Generator', - 'protected $signature = \'make:foobar\';', + 'protected $name = \'make:foobar\';', ], 'app/Console/Commands/FooCommand.php'); } @@ -60,7 +60,7 @@ public function it_can_generate_command_file_with_command_name_without_make_pref 'namespace App\Console\Commands;', 'use Orchestra\Canvas\Core\Commands\Generator;', 'class FooCommand extends Generator', - 'protected $signature = \'make:foobar\';', + 'protected $name = \'make:foobar\';', ], 'app/Console/Commands/FooCommand.php'); } }