From 9c6cedb8224b49708feff0f16316ab7f6e68913c Mon Sep 17 00:00:00 2001 From: TakayukiB Goto Date: Thu, 24 Oct 2019 18:48:28 +0900 Subject: [PATCH] [Process] Fix typo --- process/process_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/process/process_test.go b/process/process_test.go index 9c003e4..8b1d2f3 100644 --- a/process/process_test.go +++ b/process/process_test.go @@ -249,7 +249,7 @@ func Test_Process_Groups(t *testing.T) { v, err := p.Groups() skipIfNotImplementedErr(t, err) if err != nil { - t.Errorf("geting groups error %v", err) + t.Errorf("getting groups error %v", err) } if len(v) <= 0 || v[0] < 0 { t.Errorf("invalid Groups: %v", v)