@@ -36,8 +36,8 @@ public async Task Should_EmitPrefaceFirst_When_FirstPullOccurs()
3636 . RunWith ( Sink . Seq < IOutputItem > ( ) , Materializer ) ;
3737
3838 Assert . Equal ( 2 , results . Count ) ;
39- Assert . IsType < Http3TaggedItem > ( results [ 0 ] ) ;
40- Assert . IsNotType < Http3TaggedItem > ( results [ 1 ] ) ;
39+ Assert . IsType < Http3OutputTaggedItem > ( results [ 0 ] ) ;
40+ Assert . IsNotType < Http3OutputTaggedItem > ( results [ 1 ] ) ;
4141 }
4242
4343 [ Fact ( Timeout = 10_000 , DisplayName = "RFC9114-6.2.1-H3CP-002: Preface is tagged as OutputStreamType.Control" ) ]
@@ -49,7 +49,7 @@ public async Task Should_TagPrefaceAsControl_When_Emitted()
4949 . Via ( Flow . FromGraph ( new Http30ControlStreamPrefaceStage ( ) ) )
5050 . RunWith ( Sink . Seq < IOutputItem > ( ) , Materializer ) ;
5151
52- var tagged = Assert . IsType < Http3TaggedItem > ( results [ 0 ] ) ;
52+ var tagged = Assert . IsType < Http3OutputTaggedItem > ( results [ 0 ] ) ;
5353 Assert . Equal ( OutputStreamType . Control , tagged . StreamType ) ;
5454 Assert . IsType < DataItem > ( tagged . Inner ) ;
5555 }
@@ -63,7 +63,7 @@ public async Task Should_StartWithStreamType0x00_When_PrefaceEmitted()
6363 . Via ( Flow . FromGraph ( new Http30ControlStreamPrefaceStage ( ) ) )
6464 . RunWith ( Sink . Seq < IOutputItem > ( ) , Materializer ) ;
6565
66- var tagged = ( Http3TaggedItem ) results [ 0 ] ;
66+ var tagged = ( Http3OutputTaggedItem ) results [ 0 ] ;
6767 var data = ( DataItem ) tagged . Inner ;
6868 var bytes = data . Memory . Memory [ ..data . Length ] . ToArray ( ) ;
6969
@@ -80,7 +80,7 @@ public async Task Should_ContainSettingsFrameType_When_PrefaceEmitted()
8080 . Via ( Flow . FromGraph ( new Http30ControlStreamPrefaceStage ( ) ) )
8181 . RunWith ( Sink . Seq < IOutputItem > ( ) , Materializer ) ;
8282
83- var tagged = ( Http3TaggedItem ) results [ 0 ] ;
83+ var tagged = ( Http3OutputTaggedItem ) results [ 0 ] ;
8484 var data = ( DataItem ) tagged . Inner ;
8585 var bytes = data . Memory . Memory [ ..data . Length ] . ToArray ( ) ;
8686
@@ -97,7 +97,7 @@ public async Task Should_MatchOpenLocalStreamOutput_When_DefaultSettings()
9797 . Via ( Flow . FromGraph ( new Http30ControlStreamPrefaceStage ( ) ) )
9898 . RunWith ( Sink . Seq < IOutputItem > ( ) , Materializer ) ;
9999
100- var tagged = ( Http3TaggedItem ) results [ 0 ] ;
100+ var tagged = ( Http3OutputTaggedItem ) results [ 0 ] ;
101101 var data = ( DataItem ) tagged . Inner ;
102102 var actual = data . Memory . Memory [ ..data . Length ] . ToArray ( ) ;
103103
@@ -122,9 +122,9 @@ public async Task Should_EmitPrefaceOnlyOnce_When_MultipleUpstreamItems()
122122 // First item = preface (tagged), then 5 upstream items pass through
123123 Assert . Equal ( 6 , results . Count ) ;
124124
125- var taggedCount = results . Count ( r => r is Http3TaggedItem t && t . StreamType == OutputStreamType . Control ) ;
125+ var taggedCount = results . Count ( r => r is Http3OutputTaggedItem t && t . StreamType == OutputStreamType . Control ) ;
126126 Assert . Equal ( 1 , taggedCount ) ;
127- Assert . IsType < Http3TaggedItem > ( results [ 0 ] ) ;
127+ Assert . IsType < Http3OutputTaggedItem > ( results [ 0 ] ) ;
128128 }
129129
130130 [ Fact ( Timeout = 10_000 , DisplayName = "RFC9114-6.2.1-H3CP-007: Subsequent items pass through unchanged" ) ]
@@ -153,7 +153,7 @@ public async Task Should_TerminateCleanly_When_UpstreamFinishes()
153153
154154 // Preface + one passthrough item, then stage completes cleanly
155155 Assert . Equal ( 2 , results . Count ) ;
156- Assert . IsType < Http3TaggedItem > ( results [ 0 ] ) ;
156+ Assert . IsType < Http3OutputTaggedItem > ( results [ 0 ] ) ;
157157 }
158158
159159 [ Fact ( Timeout = 10_000 , DisplayName = "RFC9114-6.2.1-H3CP-009: Custom settings are reflected in preface bytes" ) ]
@@ -168,7 +168,7 @@ public async Task Should_UseCustomSettings_When_Provided()
168168 . Via ( Flow . FromGraph ( new Http30ControlStreamPrefaceStage ( settings ) ) )
169169 . RunWith ( Sink . Seq < IOutputItem > ( ) , Materializer ) ;
170170
171- var tagged = ( Http3TaggedItem ) results [ 0 ] ;
171+ var tagged = ( Http3OutputTaggedItem ) results [ 0 ] ;
172172 var data = ( DataItem ) tagged . Inner ;
173173 var actual = data . Memory . Memory [ ..data . Length ] . ToArray ( ) ;
174174
0 commit comments