From b1507c6b210ffa0d69c344c16eb01b13197b233b Mon Sep 17 00:00:00 2001 From: Brandon Philips Date: Mon, 17 Mar 2014 11:07:29 -0700 Subject: [PATCH] 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 (github: philips) Upstream-commit: ad7e7d612390d09d3a54fd82dda9687deb3b0cbe Component: engine --- components/engine/pkg/libcontainer/types_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/engine/pkg/libcontainer/types_test.go b/components/engine/pkg/libcontainer/types_test.go index 52b85a4db9..9735937b76 100644 --- a/components/engine/pkg/libcontainer/types_test.go +++ b/components/engine/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") } }