Skip to content

Commit ec23fb5

Browse files
blueFormannicolas-grekas
authored andcommitted
Improve testsuite
1 parent 05787c7 commit ec23fb5

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

Tests/Store/CombinedStoreTest.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323

2424
/**
2525
* @author Jérémy Derussé <jeremy@derusse.com>
26+
* @group integration
2627
*/
2728
class CombinedStoreTest extends AbstractStoreTest
2829
{
@@ -41,7 +42,8 @@ protected function getClockDelay()
4142
*/
4243
public function getStore(): PersistingStoreInterface
4344
{
44-
$redis = new \Predis\Client(array_combine(['host', 'port'], explode(':', getenv('REDIS_HOST')) + [1 => null]));
45+
$redis = new \Predis\Client(array_combine(['host', 'port'], explode(':', getenv('REDIS_HOST')) + [1 => 6379]));
46+
4547
try {
4648
$redis->connect();
4749
} catch (\Exception $e) {

Tests/Store/PdoStoreTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
* @author Jérémy Derussé <jeremy@derusse.com>
2121
*
2222
* @requires extension pdo_sqlite
23+
* @group integration
2324
*/
2425
class PdoStoreTest extends AbstractStoreTest
2526
{

Tests/Store/ZookeeperStoreTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
* @author Ganesh Chandrasekaran <gchandrasekaran@wayfair.com>
2121
*
2222
* @requires extension zookeeper
23+
* @group integration
2324
*/
2425
class ZookeeperStoreTest extends AbstractStoreTest
2526
{

0 commit comments

Comments
 (0)