From 6e9d73426b16e1c57629765b770ddd8621a0123f Mon Sep 17 00:00:00 2001 From: Harshavardhana Date: Wed, 10 Feb 2016 13:33:36 -0800 Subject: [PATCH] pkg/ioutils: True should be true --- pkg/ioutils/ioutils_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/ioutils/ioutils_test.go b/pkg/ioutils/ioutils_test.go index 627c541e5..d316959f4 100644 --- a/pkg/ioutils/ioutils_test.go +++ b/pkg/ioutils/ioutils_test.go @@ -39,5 +39,5 @@ func (s *MySuite) TestIoutils(c *C) { status, err := ioutils.IsDirEmpty(path) c.Assert(err, IsNil) - c.Assert(status, Equals, True) + c.Assert(status, Equals, true) }