aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/cache.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib/cache.php')
-rw-r--r--tests/lib/cache.php2
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');