Skip to content

Commit

Permalink
version v0.24.2
Browse files Browse the repository at this point in the history
  • Loading branch information
cuhsat committed Jun 8, 2024
1 parent 48c41c2 commit 7410865
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Install packages
- name: Set up OS
run: |
sudo apt update -y
sudo apt install -y qemu-utils
Expand Down
4 changes: 4 additions & 0 deletions pkg/fmount/dd/dd_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@ func TestDD(t *testing.T) {
if err != nil {
t.Fatal(err)
}

if _, err = os.Stat(mnt); !os.IsNotExist(err) {
t.Fatal("mount point not removed")
}
})
}
}
4 changes: 4 additions & 0 deletions pkg/fmount/vmdk/vmdk_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@ func TestVMDK(t *testing.T) {
if err != nil {
t.Fatal(err)
}

if _, err = os.Stat(mnt); !os.IsNotExist(err) {
t.Fatal("mount point not removed")
}
})
}
}

0 comments on commit 7410865

Please sign in to comment.