Skip to content

Commit a4adb2a

Browse files
authored
Merge pull request #192 from Codeception/parse-error-in-tests
Fix failing tests
2 parents afb4e60 + 0696525 commit a4adb2a

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
strategy:
1010
matrix:
11-
php: [7.0, 7.1, 7.2, 7.3, 7.4, 8.0]
11+
php: [7.0, 7.1, 7.2, 7.3, 7.4]
1212

1313
steps:
1414
- name: Checkout code

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
}
1414
},
1515
"require": {
16-
"php": ">=7.0.0",
17-
"goaop/framework": "^2.2.0 | ^3.0.0-RC2",
16+
"php": "^7.0",
17+
"goaop/framework": "^2.2.0",
1818
"phpunit/phpunit": "> 6.0.0",
1919
"symfony/finder": ">=2.4 <6.0"
2020
},

tests/_data/php7.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
namespace Test\ns1;
33
class TestPhp7Class
44
{
5+
6+
//
7+
58
public function stringSth(string $arg) {}
69
public function floatSth(float $arg) {}
710
public function boolSth(bool $arg) {}

0 commit comments

Comments
 (0)