Update cpu stat test for no error

Docker-DCO-1.1-Signed-off-by: Michael Crosby <michael@crosbymichael.com> (github: crosbymichael)
Upstream-commit: 30fdac2cb1bd5461972cef6efa3d67270db23491
Component: engine
This commit is contained in:
Michael Crosby
2014-06-02 11:54:23 -07:00
parent 40e79b8f9e
commit 2e677833d3

View File

@ -43,8 +43,8 @@ func TestNoCpuStatFile(t *testing.T) {
cpu := &cpuGroup{}
err := cpu.GetStats(helper.CgroupData, &actualStats)
if err == nil {
t.Fatal("Expected to fail, but did not.")
if err != nil {
t.Fatal("Expected not to fail, but did")
}
}