Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
stovak committed Nov 28, 2023
1 parent b4c0e7f commit 2029f83
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions tests/unit_tests/Commands/Env/CommitCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ public function testCommit()
$this->assertNull($out);
}

/**
* Tests the env:commit command when there are no changes to be committed
*/
/**
* Tests the env:commit command when there are no changes to be committed
*/
public function testCommitNoChanges()
{
$this->environment->expects($this->once())
Expand All @@ -81,9 +81,9 @@ public function testCommitNoChanges()
$this->assertNull($out);
}

/**
* Tests the env:commit command when there are no changes to be committed
*/
/**
* Tests the env:commit command when there are no changes to be committed
*/
public function testCommitForce()
{
$message = 'Custom message.';
Expand All @@ -110,9 +110,9 @@ public function testCommitForce()
$this->assertNull($out);
}

/**
* Tests the env:commit command when there are no changes to be committed
*/
/**
* Tests the env:commit command when there are no changes to be committed
*/
public function testCommitForceGitMode()
{
$this->environment->expects($this->once())
Expand Down

0 comments on commit 2029f83

Please sign in to comment.