Skip to content

Commit

Permalink
Fix typo in test value
Browse files Browse the repository at this point in the history
  • Loading branch information
michalkleiner committed Jul 12, 2024
1 parent c9344a5 commit fddc18f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/PHPUnit/Unit/VersionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public function testNextPreviewCorrectlyBumpsVersionIfNeeded()
$this->assertCorrectPreviewVersionWithoutSuffix('3.3.3-rc1.20201224180000', '3.3.3-rc1');

// preview does not bump x.y.z, only dt suffix
$this->assertCorrectPreviewVersionWithoutSuffix('3.3.3-alpha-20201224180000', '3.3.3-alpha');
$this->assertCorrectPreviewVersionWithoutSuffix('3.3.3-alpha.20201224180000', '3.3.3-alpha');
$this->assertCorrectPreviewVersionWithoutSuffix('3.3.3-b1.20201224180000', '3.3.3-b1');
$this->assertCorrectPreviewVersionWithoutSuffix('3.3.3-rc1.20201224180000', '3.3.3-rc1');
}
Expand Down

0 comments on commit fddc18f

Please sign in to comment.