File tree 1 file changed +4
-0
lines changed
Tests/Session/Storage/Handler
1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -133,6 +133,8 @@ public function testWrite()
133
133
$ this ->assertInstanceOf (\MongoDB \BSON \UTCDateTime::class, $ data [$ this ->options ['time_field ' ]]);
134
134
$ this ->assertInstanceOf (\MongoDB \BSON \UTCDateTime::class, $ data [$ this ->options ['expiry_field ' ]]);
135
135
$ this ->assertGreaterThanOrEqual ($ expectedExpiry , round ((string ) $ data [$ this ->options ['expiry_field ' ]] / 1000 ));
136
+
137
+ return $ this ->createMock (\MongoDB \UpdateResult::class);
136
138
});
137
139
138
140
$ this ->assertTrue ($ this ->storage ->write ('foo ' , 'bar ' ));
@@ -153,6 +155,8 @@ public function testReplaceSessionData()
153
155
->method ('updateOne ' )
154
156
->willReturnCallback (function ($ criteria , $ updateData , $ options ) use (&$ data ) {
155
157
$ data = $ updateData ;
158
+
159
+ return $ this ->createMock (\MongoDB \UpdateResult::class);
156
160
});
157
161
158
162
$ this ->storage ->write ('foo ' , 'bar ' );
You can’t perform that action at this time.
0 commit comments