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

Mark archive.TestApplyLayer as skipped

Instead of just returning we call Skip to log that the test
was skipped.
This commit is contained in:
Alexander Larsson 2013-11-18 14:31:34 +01:00
parent 427649eee1
commit 8ed4307f50

View file

@ -251,7 +251,8 @@ func TestChangesDirsMutated(t *testing.T) {
}
func TestApplyLayer(t *testing.T) {
return // Disable this for now as it is broken
t.Skip("Skipping TestApplyLayer due to known failures") // Disable this for now as it is broken
return
src, err := ioutil.TempDir("", "docker-changes-test")
if err != nil {