We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65f2545 commit 438ed9fCopy full SHA for 438ed9f
1 file changed
tests/unit/ClientTest.php
@@ -47,21 +47,21 @@ public function testClientSigning()
47
48
public function testClientFeed()
49
{
50
- $client = new Client('key', 'secret', $location='qa');
+ $client = new Client('key', str_repeat('s', 32), $location='qa');
51
$feed1 = $client->feed('flat', '1');
52
$this->assertSame($feed1->getId(), 'flat:1');
53
}
54
55
public function testCreateReference()
56
57
58
$ref = $client->collections()->createReference("item", "42");
59
$this->assertEquals($ref, "SO:item:42");
60
61
62
public function testCreateUserReference()
63
64
65
$ref = $client->users()->createReference("42");
66
$this->assertEquals($ref, "SU:42");
67
0 commit comments