summaryrefslogtreecommitdiffstats
path: root/tests/lib/session/session.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib/session/session.php')
-rw-r--r--tests/lib/session/session.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/lib/session/session.php b/tests/lib/session/session.php
index 72dee44e7cb..9ce11274c84 100644
--- a/tests/lib/session/session.php
+++ b/tests/lib/session/session.php
@@ -44,7 +44,9 @@ abstract class Session extends \PHPUnit_Framework_TestCase {
}
public function testRemoveNonExisting() {
+ $this->assertFalse($this->instance->exists('foo'));
$this->instance->remove('foo');
+ $this->assertFalse($this->instance->exists('foo'));
}
public function testNotExistsAfterClear() {