Skip to content

Commit 438ed9f

Browse files
fix tests
1 parent 65f2545 commit 438ed9f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tests/unit/ClientTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,21 +47,21 @@ public function testClientSigning()
4747

4848
public function testClientFeed()
4949
{
50-
$client = new Client('key', 'secret', $location='qa');
50+
$client = new Client('key', str_repeat('s', 32), $location='qa');
5151
$feed1 = $client->feed('flat', '1');
5252
$this->assertSame($feed1->getId(), 'flat:1');
5353
}
5454

5555
public function testCreateReference()
5656
{
57-
$client = new Client('key', 'secret', $location='qa');
57+
$client = new Client('key', str_repeat('s', 32), $location='qa');
5858
$ref = $client->collections()->createReference("item", "42");
5959
$this->assertEquals($ref, "SO:item:42");
6060
}
6161

6262
public function testCreateUserReference()
6363
{
64-
$client = new Client('key', 'secret', $location='qa');
64+
$client = new Client('key', str_repeat('s', 32), $location='qa');
6565
$ref = $client->users()->createReference("42");
6666
$this->assertEquals($ref, "SU:42");
6767
}

0 commit comments

Comments
 (0)