Skip to content

Commit

Permalink
Changed test setUp to match changes by qodeboy (The setup now sets th…
Browse files Browse the repository at this point in the history
…e prefix after instantiation of the Redis class)
  • Loading branch information
Florian Heller committed Jul 19, 2017
1 parent 68c8264 commit a1cf7e0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/RedisTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ public function setUp()
{
parent::setUp();

$this->redis = new Redis('prefix:');
$this->redis = new Redis();
$this->redis->prefix = 'prefix:';
}

public function testPrefix()
Expand Down

0 comments on commit a1cf7e0

Please sign in to comment.