Skip to content

Commit

Permalink
review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
stovak committed Sep 18, 2024
1 parent ea2b044 commit ac153c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Commands/Site/LabelCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class LabelCommand extends SiteCommand
* @authorize
*
* @command site:label:set
* @alias site:label-set
* @alias set-label
* @alias slbl
*
* @param string $site_name Site name
Expand Down
2 changes: 1 addition & 1 deletion tests/Functional/SiteCommandsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ public function testSiteLabelCommand()
$this->assertArrayHasKey('label', $siteInfo);
$this->assertEquals($label, $siteInfo['label']);
// Change it back
$command = sprintf('site:label %s "%s"', $this->getSiteName(), $this->getSiteName());
$command = sprintf('site:label:set %s "%s"', $this->getSiteName(), $this->getSiteName());
$this->terminus(
$command,
['--yes']
Expand Down

0 comments on commit ac153c0

Please sign in to comment.