Browse Source

fix: gofmt error. (#918)

tags/v1.1.0
Bo-Yi Wu 8 years ago committed by Lunny Xiao
parent
commit
1ec6b1a258
  1. 2
      models/models_test.go

2
models/models_test.go

@ -11,7 +11,7 @@ import (
) )
func Test_parsePostgreSQLHostPort(t *testing.T) { func Test_parsePostgreSQLHostPort(t *testing.T) {
test := func (input, expectedHost, expectedPort string) { test := func(input, expectedHost, expectedPort string) {
host, port := parsePostgreSQLHostPort(input) host, port := parsePostgreSQLHostPort(input)
assert.Equal(t, expectedHost, host) assert.Equal(t, expectedHost, host)
assert.Equal(t, expectedPort, port) assert.Equal(t, expectedPort, port)

Loading…
Cancel
Save