@@ -60,6 +60,7 @@ async fn test_context_inclusion_integration() -> anyhow::Result<()> {
60
60
stop_sequences : None ,
61
61
metadata : None ,
62
62
} ,
63
+ extensions : Default :: default ( ) ,
63
64
} ) ;
64
65
65
66
let result = handler
@@ -69,6 +70,7 @@ async fn test_context_inclusion_integration() -> anyhow::Result<()> {
69
70
peer : client. peer ( ) . clone ( ) ,
70
71
ct : CancellationToken :: new ( ) ,
71
72
id : NumberOrString :: Number ( 1 ) ,
73
+ meta : Default :: default ( ) ,
72
74
} ,
73
75
)
74
76
. await ?;
@@ -99,6 +101,7 @@ async fn test_context_inclusion_integration() -> anyhow::Result<()> {
99
101
stop_sequences : None ,
100
102
metadata : None ,
101
103
} ,
104
+ extensions : Default :: default ( ) ,
102
105
} ) ;
103
106
104
107
let result = handler
@@ -108,6 +111,7 @@ async fn test_context_inclusion_integration() -> anyhow::Result<()> {
108
111
peer : client. peer ( ) . clone ( ) ,
109
112
ct : CancellationToken :: new ( ) ,
110
113
id : NumberOrString :: Number ( 2 ) ,
114
+ meta : Default :: default ( ) ,
111
115
} ,
112
116
)
113
117
. await ?;
@@ -138,6 +142,7 @@ async fn test_context_inclusion_integration() -> anyhow::Result<()> {
138
142
stop_sequences : None ,
139
143
metadata : None ,
140
144
} ,
145
+ extensions : Default :: default ( ) ,
141
146
} ) ;
142
147
143
148
let result = handler
@@ -147,6 +152,7 @@ async fn test_context_inclusion_integration() -> anyhow::Result<()> {
147
152
peer : client. peer ( ) . clone ( ) ,
148
153
ct : CancellationToken :: new ( ) ,
149
154
id : NumberOrString :: Number ( 3 ) ,
155
+ meta : Default :: default ( ) ,
150
156
} ,
151
157
)
152
158
. await ?;
@@ -197,6 +203,7 @@ async fn test_context_inclusion_ignored_integration() -> anyhow::Result<()> {
197
203
stop_sequences : None ,
198
204
metadata : None ,
199
205
} ,
206
+ extensions : Default :: default ( ) ,
200
207
} ) ;
201
208
202
209
let result = handler
@@ -206,6 +213,7 @@ async fn test_context_inclusion_ignored_integration() -> anyhow::Result<()> {
206
213
peer : client. peer ( ) . clone ( ) ,
207
214
ct : CancellationToken :: new ( ) ,
208
215
id : NumberOrString :: Number ( 1 ) ,
216
+ meta : Meta :: default ( ) ,
209
217
} ,
210
218
)
211
219
. await ?;
@@ -261,6 +269,7 @@ async fn test_message_sequence_integration() -> anyhow::Result<()> {
261
269
stop_sequences : None ,
262
270
metadata : None ,
263
271
} ,
272
+ extensions : Default :: default ( ) ,
264
273
} ) ;
265
274
266
275
let result = handler
@@ -270,6 +279,7 @@ async fn test_message_sequence_integration() -> anyhow::Result<()> {
270
279
peer : client. peer ( ) . clone ( ) ,
271
280
ct : CancellationToken :: new ( ) ,
272
281
id : NumberOrString :: Number ( 1 ) ,
282
+ meta : Meta :: default ( ) ,
273
283
} ,
274
284
)
275
285
. await ?;
@@ -333,6 +343,7 @@ async fn test_message_sequence_validation_integration() -> anyhow::Result<()> {
333
343
stop_sequences : None ,
334
344
metadata : None ,
335
345
} ,
346
+ extensions : Default :: default ( ) ,
336
347
} ) ;
337
348
338
349
let result = handler
@@ -342,6 +353,7 @@ async fn test_message_sequence_validation_integration() -> anyhow::Result<()> {
342
353
peer : client. peer ( ) . clone ( ) ,
343
354
ct : CancellationToken :: new ( ) ,
344
355
id : NumberOrString :: Number ( 1 ) ,
356
+ meta : Meta :: default ( ) ,
345
357
} ,
346
358
)
347
359
. await ?;
@@ -364,6 +376,7 @@ async fn test_message_sequence_validation_integration() -> anyhow::Result<()> {
364
376
stop_sequences : None ,
365
377
metadata : None ,
366
378
} ,
379
+ extensions : Default :: default ( ) ,
367
380
} ) ;
368
381
369
382
let result = handler
@@ -373,6 +386,7 @@ async fn test_message_sequence_validation_integration() -> anyhow::Result<()> {
373
386
peer : client. peer ( ) . clone ( ) ,
374
387
ct : CancellationToken :: new ( ) ,
375
388
id : NumberOrString :: Number ( 2 ) ,
389
+ meta : Meta :: default ( ) ,
376
390
} ,
377
391
)
378
392
. await ;
@@ -414,6 +428,7 @@ async fn test_selective_context_handling_integration() -> anyhow::Result<()> {
414
428
stop_sequences : None ,
415
429
metadata : None ,
416
430
} ,
431
+ extensions : Default :: default ( ) ,
417
432
} ) ;
418
433
419
434
let result = handler
@@ -423,6 +438,7 @@ async fn test_selective_context_handling_integration() -> anyhow::Result<()> {
423
438
peer : client. peer ( ) . clone ( ) ,
424
439
ct : CancellationToken :: new ( ) ,
425
440
id : NumberOrString :: Number ( 1 ) ,
441
+ meta : Meta :: default ( ) ,
426
442
} ,
427
443
)
428
444
. await ?;
@@ -451,6 +467,7 @@ async fn test_selective_context_handling_integration() -> anyhow::Result<()> {
451
467
stop_sequences : None ,
452
468
metadata : None ,
453
469
} ,
470
+ extensions : Default :: default ( ) ,
454
471
} ) ;
455
472
456
473
let result = handler
@@ -460,6 +477,7 @@ async fn test_selective_context_handling_integration() -> anyhow::Result<()> {
460
477
peer : client. peer ( ) . clone ( ) ,
461
478
ct : CancellationToken :: new ( ) ,
462
479
id : NumberOrString :: Number ( 2 ) ,
480
+ meta : Meta :: default ( ) ,
463
481
} ,
464
482
)
465
483
. await ?;
@@ -505,6 +523,7 @@ async fn test_context_inclusion() -> anyhow::Result<()> {
505
523
stop_sequences : None ,
506
524
metadata : None ,
507
525
} ,
526
+ extensions : Default :: default ( ) ,
508
527
} ) ;
509
528
510
529
let result = handler
@@ -514,6 +533,7 @@ async fn test_context_inclusion() -> anyhow::Result<()> {
514
533
peer : client. peer ( ) . clone ( ) ,
515
534
ct : CancellationToken :: new ( ) ,
516
535
id : NumberOrString :: Number ( 1 ) ,
536
+ meta : Meta :: default ( ) ,
517
537
} ,
518
538
)
519
539
. await ?;
0 commit comments