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 e4d4c3c commit ad9b0caCopy full SHA for ad9b0ca
tests/unit/Db/SessionMapperTest.php
@@ -94,11 +94,16 @@ public function testDeleteInactiveWithoutSteps1010() {
94
95
self::assertCount(1010, $this->sessionMapper->findAll(1));
96
97
+ $a = $this->sessionMapper->findAll(1);
98
+ var_dump($a);
99
sleep(1);
100
101
\OC::$server->getDatabaseConnection()->beginTransaction();
102
$this->sessionMapper->deleteInactiveWithoutSteps(1);
103
\OC::$server->getDatabaseConnection()->commit();
104
+
105
106
107
108
self::assertCount(0, $this->sessionMapper->findAll(1));
109
}
0 commit comments