diff --git a/oci/spec_opts_test.go b/oci/spec_opts_test.go index d6d296b46..cede96d3e 100644 --- a/oci/spec_opts_test.go +++ b/oci/spec_opts_test.go @@ -54,13 +54,13 @@ func TestWithEnv(t *testing.T) { WithEnv([]string{"env2=2"})(nil, nil, nil, &s) if s.Process.Env[2] != "env2=2" { - t.Fatal("could't update") + t.Fatal("couldn't update") } WithEnv([]string{"env2"})(nil, nil, nil, &s) if len(s.Process.Env) != 2 { - t.Fatal("could't unset") + t.Fatal("couldn't unset") } }