aboutsummaryrefslogtreecommitdiff
path: root/src/os/executable_test.go
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2017-12-09 12:31:41 +0100
committerBrad Fitzpatrick <bradfitz@golang.org>2017-12-09 15:49:34 +0000
commitb3a108879f3312eb289b66186b16f87bb300795f (patch)
tree8f9290a7a99f90b35c811209097000519a82ec6b /src/os/executable_test.go
parent29cb57c5bda37f1c5a58b315fc5619835cc53467 (diff)
downloadgo-b3a108879f3312eb289b66186b16f87bb300795f.tar.xz
os: fix typo in TestExecutable comment
Change-Id: I2ad5d73deaee57ccbb2c75378dcc2884e43be3bb Reviewed-on: https://go-review.googlesource.com/82899 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'src/os/executable_test.go')
-rw-r--r--src/os/executable_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os/executable_test.go b/src/os/executable_test.go
index 7800844e42..4a9a8837be 100644
--- a/src/os/executable_test.go
+++ b/src/os/executable_test.go
@@ -17,7 +17,7 @@ import (
const executable_EnvVar = "OSTEST_OUTPUT_EXECPATH"
func TestExecutable(t *testing.T) {
- testenv.MustHaveExec(t) // will also execlude nacl, which doesn't support Executable anyway
+ testenv.MustHaveExec(t) // will also exclude nacl, which doesn't support Executable anyway
ep, err := os.Executable()
if err != nil {
t.Fatalf("Executable failed: %v", err)