diff options
author | Stefan Weil <sw@weilnetz.de> | 2016-04-06 12:14:52 +0200 |
---|---|---|
committer | Stefan Weil <sw@weilnetz.de> | 2016-04-06 15:08:27 +0200 |
commit | 02e226a6b3f77c96690f873e8f71b512359e58df (patch) | |
tree | 53ff6c821f1596edd004c507822c34b6c66f36f3 /tests/lib/cache.php | |
parent | dda739c0cc3b584d89e0745b2cd9eb9599124d28 (diff) | |
download | nextcloud-server-02e226a6b3f77c96690f873e8f71b512359e58df.tar.gz nextcloud-server-02e226a6b3f77c96690f873e8f71b512359e58df.zip |
tests: Fix typos (found by codespell)
Fix also a small grammar issue.
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Diffstat (limited to 'tests/lib/cache.php')
-rw-r--r-- | tests/lib/cache.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/cache.php b/tests/lib/cache.php index feddcac4693..a91f37467d2 100644 --- a/tests/lib/cache.php +++ b/tests/lib/cache.php @@ -28,7 +28,7 @@ abstract class Test_Cache extends \Test\TestCase { $this->instance->set('value1', $value); $this->assertTrue($this->instance->hasKey('value1')); $received=$this->instance->get('value1'); - $this->assertEquals($value, $received, 'Value recieved from cache not equal to the original'); + $this->assertEquals($value, $received, 'Value received from cache not equal to the original'); $value='ipsum lorum'; $this->instance->set('value1', $value); $received=$this->instance->get('value1'); |