Skip to content

Commit

Permalink
Fix another broken test on linux
Browse files Browse the repository at this point in the history
  • Loading branch information
mitsuhiko committed Sep 19, 2023
1 parent 10d59fa commit 4f367d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_examples.rs
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ fn test_self_replace_through_symlink() {

assert!(exe.is_file());
assert!(hello.is_file());
assert!(exe_symlink.is_symlink());
assert!(exe_symlink.metadata().unwrap().file_type().is_symlink());

run(RunOptions {
path: &exe_symlink,
Expand All @@ -240,7 +240,7 @@ fn test_self_replace_through_symlink() {
});
assert!(exe.is_file());
assert!(hello.is_file());
assert!(exe_symlink.is_symlink());
assert!(exe_symlink.metadata().unwrap().file_type().is_symlink());
run(RunOptions {
path: &exe_symlink,
force_exit: false,
Expand Down

0 comments on commit 4f367d9

Please sign in to comment.