Merge pull request #6160 from crosbymichael/update-test-for-nil-error
Update cpu stat test for no error Upstream-commit: c136384b20970af7b73d16f912fae9b5bffa6b2c Component: engine
This commit is contained in:
@ -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")
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user