aboutsummaryrefslogtreecommitdiff
path: root/src/internal/syscall/windows/exec_windows_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/internal/syscall/windows/exec_windows_test.go')
-rw-r--r--src/internal/syscall/windows/exec_windows_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/internal/syscall/windows/exec_windows_test.go b/src/internal/syscall/windows/exec_windows_test.go
index 3311da5474..72550b5a84 100644
--- a/src/internal/syscall/windows/exec_windows_test.go
+++ b/src/internal/syscall/windows/exec_windows_test.go
@@ -29,7 +29,7 @@ func TestRunAtLowIntegrity(t *testing.T) {
return
}
- cmd := exec.Command(os.Args[0], "-test.run=TestRunAtLowIntegrity", "--")
+ cmd := exec.Command(os.Args[0], "-test.run=^TestRunAtLowIntegrity$", "--")
cmd.Env = []string{"GO_WANT_HELPER_PROCESS=1"}
token, err := getIntegrityLevelToken(sidWilLow)