We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c265ed commit 57592b9Copy full SHA for 57592b9
go/pkg/amqp/url_test.go
@@ -32,8 +32,9 @@ func ExampleParseURL() {
32
"amqps://host",
33
"/path",
34
"",
35
- ":1234",
36
- // Taken out because the go 1.4 URL parser isn't the same as later
+ // Taken out because url.Parse error formatting changed in 1.13
+ // ":1234",
37
+ // Taken out because the go 1.4 URL parser isn't the same as later
38
//"[::1]",
39
//"[::1",
40
// Output would be:
@@ -55,5 +56,4 @@ func ExampleParseURL() {
55
56
// amqps://host:amqps
57
// amqp://localhost:amqp/path
58
// amqp://localhost:amqp
- // parse :1234: missing protocol scheme
59
}
0 commit comments