From 8c24b1bf2ac5bdb1a1b624b9a80be17f0a4e685b Mon Sep 17 00:00:00 2001 From: Máximo Cuadros Date: Thu, 25 Jan 2018 12:33:51 +0100 Subject: gofmt -s MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Máximo Cuadros --- plumbing/transport/ssh/common_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plumbing/transport/ssh/common_test.go') diff --git a/plumbing/transport/ssh/common_test.go b/plumbing/transport/ssh/common_test.go index faa0503..6e76096 100644 --- a/plumbing/transport/ssh/common_test.go +++ b/plumbing/transport/ssh/common_test.go @@ -49,7 +49,7 @@ func (s *SuiteCommon) TestDefaultSSHConfig(c *C) { }() DefaultSSHConfig = &mockSSHConfig{map[string]map[string]string{ - "github.com": map[string]string{ + "github.com": { "Hostname": "foo.local", "Port": "42", }, @@ -82,7 +82,7 @@ func (s *SuiteCommon) TestDefaultSSHConfigWildcard(c *C) { }() DefaultSSHConfig = &mockSSHConfig{Values: map[string]map[string]string{ - "*": map[string]string{ + "*": { "Port": "42", }, }} -- cgit