summaryrefslogtreecommitdiffstats
path: root/tests/lib/session/session.php
diff options
context:
space:
mode:
authorMorris Jobke <morris.jobke@gmail.com>2013-06-28 13:38:44 -0700
committerMorris Jobke <morris.jobke@gmail.com>2013-06-28 13:38:44 -0700
commit67ed48d4c93b661942aa3a1f8269e7839896d06c (patch)
tree7e797acefae5471dca26c65c1ee0949f9317aaab /tests/lib/session/session.php
parent30a403e327cd02dcf6acddd98e6a0837281cea9f (diff)
parentde66861ef1a440837cc6161eaea21fd3e401570f (diff)
downloadnextcloud-server-67ed48d4c93b661942aa3a1f8269e7839896d06c.tar.gz
nextcloud-server-67ed48d4c93b661942aa3a1f8269e7839896d06c.zip
Merge pull request #3884 from owncloud/fixing-unittests-master
Fixing unittests master
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() {