Skip to content

Commit

Permalink
Merge branch '6.2' into 6.3
Browse files Browse the repository at this point in the history
* 6.2:
  CS fix
  Fix test provider
  • Loading branch information
nicolas-grekas committed Feb 16, 2023
2 parents 65479a2 + cd85cc7 commit 8e4629b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions Tests/Caster/MysqliCasterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

/**
* @requires extension mysqli
*
* @group integration
*/
class MysqliCasterTest extends TestCase
Expand Down
1 change: 1 addition & 0 deletions Tests/Caster/RdKafkaCasterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@

/**
* @requires extension rdkafka
*
* @group integration
*/
class RdKafkaCasterTest extends TestCase
Expand Down
3 changes: 2 additions & 1 deletion Tests/Caster/RedisCasterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

/**
* @author Nicolas Grekas <p@tchwork.com>
*
* @group integration
*/
class RedisCasterTest extends TestCase
Expand Down Expand Up @@ -49,7 +50,7 @@ public function testConnected(string $class)
}

$redisHost = explode(':', getenv('REDIS_HOST')) + [1 => 6379];
$redis = new $class;
$redis = new $class();
try {
$redis->connect(...$redisHost);
} catch (\Exception $e) {
Expand Down

0 comments on commit 8e4629b

Please sign in to comment.