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 6211de7 commit 19ff425Copy full SHA for 19ff425
test/src/com/rabbitmq/client/test/AmqpUriTest.java
@@ -30,7 +30,7 @@ public void testUriParsing()
30
/* From the spec (subset of the tests) */
31
parseSuccess("amqp://user:pass@host:10000/vhost",
32
"user", "pass", "host", 10000, "vhost");
33
- parseSuccess("amqp://user%61:%61pass@host:10000/v%2fhost",
+ parseSuccess("aMQps://user%61:%61pass@host:10000/v%2fhost",
34
"usera", "apass", "host", 10000, "v/host");
35
parseSuccess("amqp://host", "guest", "guest", "host", 5672, "/");
36
parseSuccess("amqp:///vhost",
0 commit comments