Formatting with gofumpt

This commit is contained in:
9seconds
2026-03-12 19:13:33 +01:00
parent 00403e3a94
commit ffd3ab03cc
6 changed files with 23 additions and 31 deletions
+4 -4
View File
@@ -42,10 +42,10 @@ func (suite *HttpsURLTestSuite) TestUnmarshalFail() {
func (suite *HttpsURLTestSuite) TestUnmarshalOk() {
testData := map[string]string{
"https://example.com": "https://example.com",
"https://example.com:8443": "https://example.com:8443",
"https://example.com/path?q=1": "https://example.com/path?q=1",
"https://user:pass@example.com": "https://user:pass@example.com",
"https://example.com": "https://example.com",
"https://example.com:8443": "https://example.com:8443",
"https://example.com/path?q=1": "https://example.com/path?q=1",
"https://user:pass@example.com": "https://user:pass@example.com",
}
for k, v := range testData {