We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f7d3d6 commit 50a7e19Copy full SHA for 50a7e19
tests/SecretKeyTest.php
@@ -53,12 +53,12 @@ public function testDelete()
53
54
public function testListEmpty()
55
{
56
- $keys = $this->_client->secretKey()->getAll();
+ $keys = static::$_client->secretKey()->getAll();
57
foreach ($keys as $key) {
58
- $this->_client->secretKey()->delete($key->key);
+ static::$_client->secretKey()->delete($key->key);
59
}
60
61
62
$this->assertEquals(0, count($keys));
63
64
0 commit comments