Fix incorrect assert message in TestReadProcBool
Closes #33480. Signed-off-by: Tim Potter <tpot@hpe.com>
This commit is contained in:
parent
986510951a
commit
cd457e7885
1 changed files with 1 additions and 1 deletions
|
@ -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")) {
|
||||
|
|
Loading…
Reference in a new issue