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:
commit
7057f6fa0c
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…
Add table
Reference in a new issue