From 85d03cdcaea5cba7b47af602836f958f75c423b5 Mon Sep 17 00:00:00 2001 From: d98762625 Date: Fri, 27 Mar 2020 08:27:32 +0000 Subject: [PATCH] update parseURL expected output to inlcude quotes --- go/pkg/amqp/url_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/go/pkg/amqp/url_test.go b/go/pkg/amqp/url_test.go index 192e2fb04e..c0f5c0db06 100644 --- a/go/pkg/amqp/url_test.go +++ b/go/pkg/amqp/url_test.go @@ -33,7 +33,7 @@ func ExampleParseURL() { "/path", "", ":1234", - // Taken out because the go 1.4 URL parser isn't the same as later + // Taken out because the go 1.4 URL parser isn't the same as later //"[::1]", //"[::1", // Output would be: @@ -55,5 +55,5 @@ func ExampleParseURL() { // amqps://host:amqps // amqp://localhost:amqp/path // amqp://localhost:amqp - // parse :1234: missing protocol scheme + // parse ":1234": missing protocol scheme }