@@ -34,8 +34,8 @@ async fn test_futures_rustls_futures_io() -> io::Result<()> {
3434 let mut cx = Context :: from_waker ( futures:: task:: noop_waker_ref ( ) ) ;
3535 let bytes_read = pinned. poll_read ( & mut cx, & mut buffer) ;
3636 if let Poll :: Ready ( Ok ( n) ) = bytes_read {
37- sink ( & buffer) ; // $ MISSING: hasTaintFlow=url
38- sink ( & buffer[ ..n] ) ; // $ MISSING: hasTaintFlow=url
37+ sink ( & buffer) ; // $ hasTaintFlow=url
38+ sink ( & buffer[ ..n] ) ; // $ hasTaintFlow=url
3939 }
4040 }
4141
@@ -80,7 +80,7 @@ async fn test_futures_rustls_futures_io() -> io::Result<()> {
8080 {
8181 // using the `AsyncBufReadExt::fill_buf` extension method (higher-level)
8282 let buffer = reader2. fill_buf ( ) . await ?;
83- sink ( buffer) ; // $ MISSING: hasTaintFlow
83+ sink ( buffer) ; // $ hasTaintFlow=url
8484 }
8585
8686 {
@@ -122,7 +122,7 @@ async fn test_futures_rustls_futures_io() -> io::Result<()> {
122122 {
123123 // using the `AsyncBufReadExt::fill_buf` extension method (higher-level)
124124 let buffer = reader2. fill_buf ( ) . await ?;
125- sink ( buffer) ; // $ MISSING: hasTaintFlow
125+ sink ( buffer) ; // $ hasTaintFlow=url
126126 }
127127
128128 {
@@ -149,7 +149,7 @@ async fn test_futures_rustls_futures_io() -> io::Result<()> {
149149 {
150150 // using the `AsyncBufReadExt::lines` extension method
151151 let mut lines_stream = reader2. lines ( ) ;
152- sink ( lines_stream. next ( ) . await . unwrap ( ) ) ; // $ MISSING: hasTaintFlow
152+ sink ( lines_stream. next ( ) . await . unwrap ( ) ) ; // $ hasTaintFlow=url
153153 while let Some ( line) = lines_stream. next ( ) . await {
154154 sink ( line. unwrap ( ) ) ; // $ MISSING: hasTaintFlow
155155 }
0 commit comments