Skip to content

Commit d723615

Browse files
geoffw0Copilot
andauthored
Update rust/ql/test/library-tests/dataflow/sources/test.rs
Co-authored-by: Copilot <[email protected]>
1 parent 23e9270 commit d723615

File tree

1 file changed

+1
-2
lines changed
  • rust/ql/test/library-tests/dataflow/sources

1 file changed

+1
-2
lines changed

rust/ql/test/library-tests/dataflow/sources/test.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,7 @@ async fn test_hyper_http(case: i64) -> Result<(), Box<dyn std::error::Error>> {
132132
println!("streaming response...");
133133
while let Some(frame) = response.frame().await {
134134
if let Some(data) = frame?.data_ref() {
135-
std::io::stdout().write_all(data);
136-
135+
std::io::stdout().write_all(data)?;
137136
sink(data); // $ MISSING: hasTaintFlow
138137
sink(data[0]); // $ MISSING: hasTaintFlow
139138
for byte in data {

0 commit comments

Comments
 (0)