From 657191f0c1a123df337602b85ad2628d2b62747e Mon Sep 17 00:00:00 2001 From: Weilu Jia Date: Sun, 19 Sep 2021 19:41:18 -0700 Subject: [PATCH] fix tests --- windows/syscall_windows_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/windows/syscall_windows_test.go b/windows/syscall_windows_test.go index 2563bf13..048e9b7a 100644 --- a/windows/syscall_windows_test.go +++ b/windows/syscall_windows_test.go @@ -765,9 +765,11 @@ func TestProcessModules(t *testing.T) { } else { switch runtime.GOARCH { case "amd64": + arch = 64 case "arm64": arch = 64 case "386": + arch = 64 case "arm": arch = 32 }