From c4c1ae6d1848aeb6e2737eb5135f49aa18623ed1 Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Mon, 15 Feb 2021 21:42:01 -0800 Subject: [PATCH] unix: fix typo in test Change-Id: I80b28a28a9e6133a7c8a9340ce5914498ff6bf0f Reviewed-on: https://go-review.googlesource.com/c/sys/+/292331 Reviewed-by: Tobias Klauser Trust: Brad Fitzpatrick Run-TryBot: Brad Fitzpatrick --- unix/syscall_unix_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unix/syscall_unix_test.go b/unix/syscall_unix_test.go index e9cc5b1c..c8a75062 100644 --- a/unix/syscall_unix_test.go +++ b/unix/syscall_unix_test.go @@ -122,7 +122,7 @@ func TestSignalNum(t *testing.T) { func TestFcntlInt(t *testing.T) { t.Parallel() - file, err := ioutil.TempFile("", "TestFnctlInt") + file, err := ioutil.TempFile("", "TestFcntlInt") if err != nil { t.Fatal(err) }