diff options
Diffstat (limited to 'src/os/os_windows_test.go')
-rw-r--r-- | src/os/os_windows_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os/os_windows_test.go b/src/os/os_windows_test.go index 61ca0c91bf..dc8c2fc56e 100644 --- a/src/os/os_windows_test.go +++ b/src/os/os_windows_test.go @@ -849,7 +849,7 @@ func main() { args := os.CommandLineToArgv(exe + cmd) out, err := osexec.Command(args[0], args[1:]...).CombinedOutput() if err != nil { - t.Fatalf("runing %q failed: %v\n%v", args, err, string(out)) + t.Fatalf("running %q failed: %v\n%v", args, err, string(out)) } if want, have := fmt.Sprintf("%q", args), string(out); want != have { t.Errorf("wrong output of executing %q: have %q want %q", args, have, want) |