Skip to content

Commit cae4705

Browse files
committed
Fixed version check
1 parent 3f3a527 commit cae4705

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/Unit/InjectorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public function testExecuteWithStringParametersThrowsOnMissingParameter()
9393
{
9494
$thrown = false;
9595

96-
if (version_compare(PHP_VERSION, '7.1.0') >= 0) {
96+
if (version_compare(PHP_VERSION, '7.1.0a') >= 0) {
9797
$this->expectException(\Error::class);
9898
} else {
9999
$this->expectException(\TypeError::class);

0 commit comments

Comments
 (0)