From 02c18c27773e966145e379933e4e01d4531e7ec3 Mon Sep 17 00:00:00 2001 From: guoguangwu Date: Sun, 24 Mar 2024 20:02:25 +0800 Subject: [PATCH] os: fix typo in test Signed-off-by: guoguangwu --- src/os/readfrom_linux_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/os/readfrom_linux_test.go b/src/os/readfrom_linux_test.go index 93f78032e73714..b292bffe2b5fc2 100644 --- a/src/os/readfrom_linux_test.go +++ b/src/os/readfrom_linux_test.go @@ -424,7 +424,7 @@ func testSpliceToTTY(t *testing.T, proto string, size int64) { // to recreate the problem in the issue (#59041). ttyFD, err := syscall.Open(ttyName, syscall.O_RDWR, 0) if err != nil { - t.Skipf("skipping test becaused failed to open tty: %v", err) + t.Skipf("skipping test because failed to open tty: %v", err) } defer syscall.Close(ttyFD)