Skip to content

Commit 03b1dae

Browse files
committed
typo fix
Signed-off-by: Yongxin Li <[email protected]>
1 parent bd90237 commit 03b1dae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

oci/spec_opts_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,13 @@ func TestWithEnv(t *testing.T) {
5454
WithEnv([]string{"env2=2"})(nil, nil, nil, &s)
5555

5656
if s.Process.Env[2] != "env2=2" {
57-
t.Fatal("could't update")
57+
t.Fatal("couldn't update")
5858
}
5959

6060
WithEnv([]string{"env2"})(nil, nil, nil, &s)
6161

6262
if len(s.Process.Env) != 2 {
63-
t.Fatal("could't unset")
63+
t.Fatal("couldn't unset")
6464
}
6565
}
6666

0 commit comments

Comments
 (0)