Remove assertion that is only true in AUFS systems.

This commit is contained in:
Victor Marmol 2015-01-22 15:00:45 -08:00
parent 4347ccb7fd
commit 5d579b43c9

View File

@ -198,7 +198,6 @@ func TestDockerContainerSpec(t *testing.T) {
assert.True(containerInfo.Spec.HasMemory, "Memory should be isolated")
assert.Equal(containerInfo.Spec.Memory.Limit, memoryLimit, "Container should have memory limit of %d, has %d", memoryLimit, containerInfo.Spec.Memory.Limit)
assert.True(containerInfo.Spec.HasNetwork, "Network should be isolated")
assert.True(containerInfo.Spec.HasFilesystem, "Filesystem should be isolated")
assert.True(containerInfo.Spec.HasDiskIo, "Blkio should be isolated")
}