1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Remove race condition caused by double-destroy in 2 tests

This commit is contained in:
Solomon Hykes 2013-10-17 23:59:59 +00:00
parent 31b883b076
commit 330062ef72
2 changed files with 0 additions and 7 deletions

View file

@ -1072,7 +1072,6 @@ func TestLXCConfig(t *testing.T) {
if err != nil {
t.Fatal(err)
}
defer runtime.Destroy(container)
container.generateLXCConfig(nil)
grepFile(t, container.lxcConfigPath(), "lxc.utsname = foobar")
grepFile(t, container.lxcConfigPath(),

View file

@ -276,12 +276,6 @@ func TestRuntimeCreate(t *testing.T) {
t.Fatal(err)
}
defer func() {
if err := runtime.Destroy(container); err != nil {
t.Error(err)
}
}()
// Make sure we can find the newly created container with List()
if len(runtime.List()) != 1 {
t.Errorf("Expected 1 container, %v found", len(runtime.List()))