Update cpu stat test for no error

Docker-DCO-1.1-Signed-off-by: Michael Crosby <michael@crosbymichael.com> (github: crosbymichael)
This commit is contained in:
Michael Crosby 2014-06-02 11:54:23 -07:00
parent 3589181812
commit 3a5c4516f9

View file

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