Added the missing return.

This commit is contained in:
Leonardo Arias Fonseca
2015-06-16 00:23:34 -06:00
parent cd58f1279b
commit d3e977c66c

View File

@@ -15,7 +15,7 @@ var _ = Suite(&InstallSuite{})
type InstallSuite struct{}
func (s *InstallSuite) installSnap(c *C, packageName) [] byte {
s.execCommand(c, "sudo", "snappy", "install", packageName)
return s.execCommand(c, "sudo", "snappy", "install", packageName)
}
func (s *InstallSuite) execCommand(c *C, cmds ...string) []byte {