Skip to content

Commit 3f38426

Browse files
committedOct 21, 2024
Ensure compatibility with mongodb v2
1 parent 35f7b4c commit 3f38426

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
 

‎Tests/Session/Storage/Handler/MongoDbSessionHandlerTest.php

+4
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,8 @@ public function testWrite()
133133
$this->assertInstanceOf(\MongoDB\BSON\UTCDateTime::class, $data[$this->options['time_field']]);
134134
$this->assertInstanceOf(\MongoDB\BSON\UTCDateTime::class, $data[$this->options['expiry_field']]);
135135
$this->assertGreaterThanOrEqual($expectedExpiry, round((string) $data[$this->options['expiry_field']] / 1000));
136+
137+
return $this->createMock(\MongoDB\UpdateResult::class);
136138
});
137139

138140
$this->assertTrue($this->storage->write('foo', 'bar'));
@@ -153,6 +155,8 @@ public function testReplaceSessionData()
153155
->method('updateOne')
154156
->willReturnCallback(function ($criteria, $updateData, $options) use (&$data) {
155157
$data = $updateData;
158+
159+
return $this->createMock(\MongoDB\UpdateResult::class);
156160
});
157161

158162
$this->storage->write('foo', 'bar');

0 commit comments

Comments
 (0)