integration_testing: Fix a output typo
s/destory/destroy for error message output. Signed-off-by: Zhao Lei <zhaolei@cn.fujitsu.com>
This commit is contained in:
parent
bd1d3ac048
commit
f2c4c4ad35
|
@ -1139,7 +1139,7 @@ func TestHook(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if err := container.Destroy(); err != nil {
|
if err := container.Destroy(); err != nil {
|
||||||
t.Fatalf("container destory %s", err)
|
t.Fatalf("container destroy %s", err)
|
||||||
}
|
}
|
||||||
fi, err := os.Stat(filepath.Join(rootfs, "test"))
|
fi, err := os.Stat(filepath.Join(rootfs, "test"))
|
||||||
if err == nil || !os.IsNotExist(err) {
|
if err == nil || !os.IsNotExist(err) {
|
||||||
|
|
Loading…
Reference in New Issue