Skip to content

Commit

Permalink
Fix a todo!() in StdoutStream.
Browse files Browse the repository at this point in the history
Fix a `todo!()` that I missed in rylev#4.
  • Loading branch information
sunfishcode committed Jan 3, 2024
1 parent c65d03e commit ee337db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runtime.rs
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ impl Subscribe for ImportImplStdout {
#[async_trait::async_trait]
impl StdoutStream for ImportImplStdout {
fn stream(&self) -> Box<(dyn wasmtime_wasi::preview2::HostOutputStream + 'static)> {
todo!()
Stdout.stream()
}

fn isatty(&self) -> bool {
Expand Down

0 comments on commit ee337db

Please sign in to comment.