Browse code

Fix incorrect assert message in TestReadProcBool

Closes #33480.

Signed-off-by: Tim Potter <tpot@hpe.com>

Tim Potter authored on 2017/06/02 09:13:06
Showing 1 changed files
... ...
@@ -28,7 +28,7 @@ func TestReadProcBool(t *testing.T) {
28 28
 		t.Fatal(err)
29 29
 	}
30 30
 	if readProcBool(procFile) {
31
-		t.Fatal("expected proc bool to be false, got false")
31
+		t.Fatal("expected proc bool to be false, got true")
32 32
 	}
33 33
 
34 34
 	if readProcBool(path.Join(tmpDir, "no-exist")) {