Skip to content

Commit

Permalink
Fixed: fixed test
Browse files Browse the repository at this point in the history
  • Loading branch information
vcaesar committed Nov 28, 2022
1 parent 5079db2 commit 2f2ed59
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions robotgo_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ func TestImage(t *testing.T) {
func TestPs(t *testing.T) {
id, err := Pids()
tt.Not(t, "[]", id)
tt.IsType(t, "[]int32", id)
tt.IsType(t, "[]int", id)
tt.Nil(t, err)

ps, e := Process()
Expand All @@ -217,7 +217,7 @@ func TestPs(t *testing.T) {

id, err = FindIds(n1[0])
tt.Not(t, "[]", id)
tt.IsType(t, "[]int32", id)
tt.IsType(t, "[]int", id)
tt.Nil(t, err)

if len(id) > 0 {
Expand Down

0 comments on commit 2f2ed59

Please sign in to comment.