Merge pull request #33481 from tpot/33480-fix-assert-message

Fix incorrect assert message in TestReadProcBool
Upstream-commit: 7057f6fa0cac7413f113ccd718bb7c8d7c34e583
Component: engine
This commit is contained in:
Aaron Lehmann
2017-06-02 11:52:29 +02:00
committed by GitHub

View File

@ -28,7 +28,7 @@ func TestReadProcBool(t *testing.T) {
t.Fatal(err)
}
if readProcBool(procFile) {
t.Fatal("expected proc bool to be false, got false")
t.Fatal("expected proc bool to be false, got true")
}
if readProcBool(path.Join(tmpDir, "no-exist")) {