update test code fixed equal error

This commit is contained in:
vcaesar 2020-05-01 11:40:41 -04:00
parent e6a1406694
commit 456920ff10

View File

@ -159,7 +159,7 @@ func TestPs(t *testing.T) {
ps, e := Process() ps, e := Process()
tt.Not(t, "[]", ps) tt.Not(t, "[]", ps)
tt.IsType(t, "[]robotgo.Nps", ps) tt.IsType(t, "[]robotgo.Nps", ps)
tt.Nil(t, err) tt.Nil(t, e)
b, e := PidExists(id[0]) b, e := PidExists(id[0])
tt.Bool(t, b) tt.Bool(t, b)