@@ -60,6 +60,7 @@ async fn test_context_inclusion_integration() -> anyhow::Result<()> {
6060 stop_sequences : None ,
6161 metadata : None ,
6262 } ,
63+ extensions : Default :: default ( ) ,
6364 } ) ;
6465
6566 let result = handler
@@ -69,6 +70,7 @@ async fn test_context_inclusion_integration() -> anyhow::Result<()> {
6970 peer : client. peer ( ) . clone ( ) ,
7071 ct : CancellationToken :: new ( ) ,
7172 id : NumberOrString :: Number ( 1 ) ,
73+ meta : Default :: default ( ) ,
7274 } ,
7375 )
7476 . await ?;
@@ -99,6 +101,7 @@ async fn test_context_inclusion_integration() -> anyhow::Result<()> {
99101 stop_sequences : None ,
100102 metadata : None ,
101103 } ,
104+ extensions : Default :: default ( ) ,
102105 } ) ;
103106
104107 let result = handler
@@ -108,6 +111,7 @@ async fn test_context_inclusion_integration() -> anyhow::Result<()> {
108111 peer : client. peer ( ) . clone ( ) ,
109112 ct : CancellationToken :: new ( ) ,
110113 id : NumberOrString :: Number ( 2 ) ,
114+ meta : Default :: default ( ) ,
111115 } ,
112116 )
113117 . await ?;
@@ -138,6 +142,7 @@ async fn test_context_inclusion_integration() -> anyhow::Result<()> {
138142 stop_sequences : None ,
139143 metadata : None ,
140144 } ,
145+ extensions : Default :: default ( ) ,
141146 } ) ;
142147
143148 let result = handler
@@ -147,6 +152,7 @@ async fn test_context_inclusion_integration() -> anyhow::Result<()> {
147152 peer : client. peer ( ) . clone ( ) ,
148153 ct : CancellationToken :: new ( ) ,
149154 id : NumberOrString :: Number ( 3 ) ,
155+ meta : Default :: default ( ) ,
150156 } ,
151157 )
152158 . await ?;
@@ -197,6 +203,7 @@ async fn test_context_inclusion_ignored_integration() -> anyhow::Result<()> {
197203 stop_sequences : None ,
198204 metadata : None ,
199205 } ,
206+ extensions : Default :: default ( ) ,
200207 } ) ;
201208
202209 let result = handler
@@ -206,6 +213,7 @@ async fn test_context_inclusion_ignored_integration() -> anyhow::Result<()> {
206213 peer : client. peer ( ) . clone ( ) ,
207214 ct : CancellationToken :: new ( ) ,
208215 id : NumberOrString :: Number ( 1 ) ,
216+ meta : Meta :: default ( ) ,
209217 } ,
210218 )
211219 . await ?;
@@ -261,6 +269,7 @@ async fn test_message_sequence_integration() -> anyhow::Result<()> {
261269 stop_sequences : None ,
262270 metadata : None ,
263271 } ,
272+ extensions : Default :: default ( ) ,
264273 } ) ;
265274
266275 let result = handler
@@ -270,6 +279,7 @@ async fn test_message_sequence_integration() -> anyhow::Result<()> {
270279 peer : client. peer ( ) . clone ( ) ,
271280 ct : CancellationToken :: new ( ) ,
272281 id : NumberOrString :: Number ( 1 ) ,
282+ meta : Meta :: default ( ) ,
273283 } ,
274284 )
275285 . await ?;
@@ -333,6 +343,7 @@ async fn test_message_sequence_validation_integration() -> anyhow::Result<()> {
333343 stop_sequences : None ,
334344 metadata : None ,
335345 } ,
346+ extensions : Default :: default ( ) ,
336347 } ) ;
337348
338349 let result = handler
@@ -342,6 +353,7 @@ async fn test_message_sequence_validation_integration() -> anyhow::Result<()> {
342353 peer : client. peer ( ) . clone ( ) ,
343354 ct : CancellationToken :: new ( ) ,
344355 id : NumberOrString :: Number ( 1 ) ,
356+ meta : Meta :: default ( ) ,
345357 } ,
346358 )
347359 . await ?;
@@ -364,6 +376,7 @@ async fn test_message_sequence_validation_integration() -> anyhow::Result<()> {
364376 stop_sequences : None ,
365377 metadata : None ,
366378 } ,
379+ extensions : Default :: default ( ) ,
367380 } ) ;
368381
369382 let result = handler
@@ -373,6 +386,7 @@ async fn test_message_sequence_validation_integration() -> anyhow::Result<()> {
373386 peer : client. peer ( ) . clone ( ) ,
374387 ct : CancellationToken :: new ( ) ,
375388 id : NumberOrString :: Number ( 2 ) ,
389+ meta : Meta :: default ( ) ,
376390 } ,
377391 )
378392 . await ;
@@ -414,6 +428,7 @@ async fn test_selective_context_handling_integration() -> anyhow::Result<()> {
414428 stop_sequences : None ,
415429 metadata : None ,
416430 } ,
431+ extensions : Default :: default ( ) ,
417432 } ) ;
418433
419434 let result = handler
@@ -423,6 +438,7 @@ async fn test_selective_context_handling_integration() -> anyhow::Result<()> {
423438 peer : client. peer ( ) . clone ( ) ,
424439 ct : CancellationToken :: new ( ) ,
425440 id : NumberOrString :: Number ( 1 ) ,
441+ meta : Meta :: default ( ) ,
426442 } ,
427443 )
428444 . await ?;
@@ -451,6 +467,7 @@ async fn test_selective_context_handling_integration() -> anyhow::Result<()> {
451467 stop_sequences : None ,
452468 metadata : None ,
453469 } ,
470+ extensions : Default :: default ( ) ,
454471 } ) ;
455472
456473 let result = handler
@@ -460,6 +477,7 @@ async fn test_selective_context_handling_integration() -> anyhow::Result<()> {
460477 peer : client. peer ( ) . clone ( ) ,
461478 ct : CancellationToken :: new ( ) ,
462479 id : NumberOrString :: Number ( 2 ) ,
480+ meta : Meta :: default ( ) ,
463481 } ,
464482 )
465483 . await ?;
@@ -505,6 +523,7 @@ async fn test_context_inclusion() -> anyhow::Result<()> {
505523 stop_sequences : None ,
506524 metadata : None ,
507525 } ,
526+ extensions : Default :: default ( ) ,
508527 } ) ;
509528
510529 let result = handler
@@ -514,6 +533,7 @@ async fn test_context_inclusion() -> anyhow::Result<()> {
514533 peer : client. peer ( ) . clone ( ) ,
515534 ct : CancellationToken :: new ( ) ,
516535 id : NumberOrString :: Number ( 1 ) ,
536+ meta : Meta :: default ( ) ,
517537 } ,
518538 )
519539 . await ?;
0 commit comments