diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2018-01-25 12:33:51 +0100 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2018-01-25 12:34:27 +0100 |
commit | 8c24b1bf2ac5bdb1a1b624b9a80be17f0a4e685b (patch) | |
tree | 84f24a02c9ec0ea78c544b5c8d3a5abb6522da5d /plumbing | |
parent | 834cd6f46fa3a3f2b5423f717cc72769e27c915b (diff) | |
download | go-git-8c24b1bf2ac5bdb1a1b624b9a80be17f0a4e685b.tar.gz |
gofmt -s
Signed-off-by: Máximo Cuadros <mcuadros@gmail.com>
Diffstat (limited to 'plumbing')
-rw-r--r-- | plumbing/transport/ssh/common_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
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", }, }} |