Skip to content

Commit

Permalink
Fix filename in stdio.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
zoraaver authored and loganek committed Sep 18, 2023
1 parent 79479e9 commit 4451fbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/rust/src/bin/stdio.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ unsafe fn test_stdio(dir_fd: wasi::Fd) {
wasi::fd_fdstat_get(*stdio_from_fd).expect_err("stdio_from_fd is not closed");

// Cleanup
wasi::path_unlink_file(dir_fd, "file").expect("failed to remove file");
wasi::path_unlink_file(dir_fd, TEST_FILENAME).expect("failed to remove file");
}
}

Expand Down

0 comments on commit 4451fbe

Please sign in to comment.