Skip to content

Commit

Permalink
remove flat camp refs
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonvarga committed Dec 3, 2024
1 parent 4458cc8 commit a6a6035
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Console/Commands/FlatCamp.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class FlatCamp extends Command
{
use RunsInPlease;

protected $signature = 'statamic:flat:camp';
protected $signature = 'flat:camp';
protected $description = 'Flat Camp';

protected $quotes = [
Expand Down
3 changes: 2 additions & 1 deletion tests/Console/PleaseTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,9 @@ public function it_can_run_an_artisan_command_with_statamic_prefix()
#[Test]
public function statamic_prefixed_commands_will_throw_exception_when_running_in_artisan_without_prefix()
{
Stache::shouldReceive('clear')->never();
$this->expectException(CommandNotFoundException::class);
$this->artisan('flat:camp');
$this->artisan('stache:clear');
}

#[Test]
Expand Down

0 comments on commit a6a6035

Please sign in to comment.