Skip to content

Commit c8655b2

Browse files
authored
.
1 parent 227a12a commit c8655b2

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ jobs:
1717
strategy:
1818
matrix:
1919
php-versions:
20-
- '5.5'
2120
- '5.6'
2221
- '7.0'
2322
- '7.1'

tests/RedisSimpleLockFactoryTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class RedisSimpleLockFactoryTest extends TestCase
88
{
99
private $redisClient;
1010

11-
protected function setUp()
11+
public function setUp()
1212
{
1313
$this->redisClient = new \Predis\Client(getenv('REDIS_URI'));
1414
$this->redisClient->flushdb();

tests/RedisSimpleLockTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ class RedisSimpleLockTest extends TestCase
77
{
88
private $redisClient;
99

10-
protected function setUp()
10+
public function setUp()
1111
{
1212
$this->redisClient = new \Predis\Client(getenv("REDIS_URI"));
1313
$this->redisClient->flushdb();

0 commit comments

Comments
 (0)