浏览代码

chore(libcontainer): small grammar fix in types_test

Someone probably got really used to typing er on the end of contain :)

Docker-DCO-1.1-Signed-off-by: Brandon Philips <brandon.philips@coreos.com> (github: philips)
Brandon Philips 11 年之前
父节点
当前提交
ad7e7d6123
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      pkg/libcontainer/types_test.go

+ 1 - 1
pkg/libcontainer/types_test.go

@@ -30,6 +30,6 @@ func TestCapabilitiesContains(t *testing.T) {
 		t.Fatal("capabilities should not contain SYS_ADMIN")
 	}
 	if !caps.Contains("MKNOD") {
-		t.Fatal("capabilities should container MKNOD but does not")
+		t.Fatal("capabilities should contain MKNOD but does not")
 	}
 }