Skip to content

Commit

Permalink
litn
Browse files Browse the repository at this point in the history
  • Loading branch information
littledivy committed Jul 27, 2024
1 parent 0c413c1 commit 890b424
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ fn test_elf(size: usize) {
#[cfg(target_os = "linux")]
let mut out = std::fs::OpenOptions::new()
.write(true)
.create(true)
.truncate(true)
.mode(0o755)
.open(&_path)
.unwrap();
Expand Down Expand Up @@ -167,7 +167,7 @@ fn test_pe(size: usize) {
#[cfg(target_os = "windows")]
let mut out = std::fs::OpenOptions::new()
.write(true)
.create(true)
.truncate(true)
.open(&_path)
.unwrap();
pe.write_resource(RESOURCE_NAME, data)
Expand Down

0 comments on commit 890b424

Please sign in to comment.