mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
graph test: Unmount image via image.Unmount()
This helps us track the unmount
This commit is contained in:
parent
c6e8813c97
commit
3343b3f8f8
1 changed files with 1 additions and 1 deletions
|
@ -152,7 +152,7 @@ func TestMount(t *testing.T) {
|
|||
}
|
||||
// FIXME: test for mount contents
|
||||
defer func() {
|
||||
if err := Unmount(rootfs); err != nil {
|
||||
if err := image.Unmount(runtime, rootfs, "testing"); err != nil {
|
||||
t.Error(err)
|
||||
}
|
||||
}()
|
||||
|
|
Loading…
Reference in a new issue