diff --git a/integration/procutils_linux.go b/integration/procutils_linux.go index 59a78cd9..4ff2be69 100644 --- a/integration/procutils_linux.go +++ b/integration/procutils_linux.go @@ -5,7 +5,7 @@ import ( "syscall" ) -// cmdLifecyleToParentIfPossible is a thin wrapper around prctl(PR_SET_PDEATHSIG) +// cmdLifecycleToParentIfPossible is a thin wrapper around prctl(PR_SET_PDEATHSIG) // on Linux. func cmdLifecycleToParentIfPossible(c *exec.Cmd) { c.SysProcAttr = &syscall.SysProcAttr{ diff --git a/integration/utils.go b/integration/utils.go index 7f75c95b..ecd89c5e 100644 --- a/integration/utils.go +++ b/integration/utils.go @@ -166,7 +166,7 @@ func modifyEnviron(env []string, name, value string) []string { return append(res, prefix+value) } -// fileFromFixtureFixture applies edits to inputPath and returns a path to the temporary file. +// fileFromFixture applies edits to inputPath and returns a path to the temporary file. // Callers should defer os.Remove(the_returned_path) func fileFromFixture(t *testing.T, inputPath string, edits map[string]string) string { contents, err := os.ReadFile(inputPath)