1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

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

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

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