Fix incorrect assert message in TestReadProcBool

Closes #33480.

Signed-off-by: Tim Potter <tpot@hpe.com>
This commit is contained in:
Tim Potter 2017-06-02 10:13:06 +10:00
parent 986510951a
commit cd457e7885

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")) {