Skip to content

Commit

Permalink
fixed Zend version test
Browse files Browse the repository at this point in the history
  • Loading branch information
develart-projects committed Aug 10, 2023
1 parent 8dce1fa commit 787c991
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Zend/VersionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public function testVersionCompare()
$expect = -1;
// unit test breaks if ZF version > 1.x
for ($i = 0; $i <= 1; $i++) {
for ($j = 0; $j <= 22; $j++) {
for ($j = 0; $j <= 99; $j++) {
for ($k = 0; $k <= 99; $k++) {
foreach (['dev', 'pr', 'PR', 'alpha', 'a1', 'a2', 'beta', 'b1', 'b2', 'RC', 'RC1', 'RC2', 'RC3', '', 'pl1', 'PL1'] as $rel) {
$ver = "$i.$j.$k$rel";
Expand Down

0 comments on commit 787c991

Please sign in to comment.