You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -50,6 +56,7 @@ public function testRun(string $body, string $format, string $result): void {
50
56
$this->caldavBackend,
51
57
$this->logger,
52
58
$this->connection,
59
+
$this->timeFactory,
53
60
$this->importService
54
61
);
55
62
@@ -118,6 +125,7 @@ public function testRunIdentical(string $uid, array $calendarObject, string $bod
118
125
$this->caldavBackend,
119
126
$this->logger,
120
127
$this->connection,
128
+
$this->timeFactory,
121
129
$this->importService
122
130
);
123
131
@@ -179,6 +187,7 @@ public function testSubscriptionNotFound(): void {
179
187
$this->caldavBackend,
180
188
$this->logger,
181
189
$this->connection,
190
+
$this->timeFactory,
182
191
$this->importService
183
192
);
184
193
@@ -198,6 +207,7 @@ public function testConnectionReturnsNull(): void {
198
207
$this->caldavBackend,
199
208
$this->logger,
200
209
$this->connection,
210
+
$this->timeFactory,
201
211
$this->importService
202
212
);
203
213
@@ -234,6 +244,7 @@ public function testDeletedObjectsArePurged(): void {
234
244
$this->caldavBackend,
235
245
$this->logger,
236
246
$this->connection,
247
+
$this->timeFactory,
237
248
$this->importService
238
249
);
239
250
@@ -295,6 +306,7 @@ public function testLongUidIsSkipped(): void {
295
306
$this->caldavBackend,
296
307
$this->logger,
297
308
$this->connection,
309
+
$this->timeFactory,
298
310
$this->importService
299
311
);
300
312
@@ -313,8 +325,8 @@ public function testLongUidIsSkipped(): void {
313
325
],
314
326
]);
315
327
316
-
// Create a UID that is longer than 255 characters
317
-
$longUid = str_repeat('a', 256);
328
+
// Create a UID that is longer than 512 characters
329
+
$longUid = str_repeat('a', 513);
318
330
$body = "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//Test//Test//EN\r\nBEGIN:VEVENT\r\nUID:$longUid\r\nDTSTAMP:20160218T133704Z\r\nDTSTART:20160218T133704Z\r\nSUMMARY:Event with long UID\r\nEND:VEVENT\r\nEND:VCALENDAR\r\n";
319
331
$stream = $this->createStreamFromString($body);
320
332
@@ -346,7 +358,7 @@ public function testLongUidIsSkipped(): void {
0 commit comments