From 3054400275062cd369b8fe519ac0044cdc91d22a 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) --- types_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types_test.go b/types_test.go index 52b85a4d..9735937b 100644 --- a/types_test.go +++ b/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") } }