Skip to content

Commit 19ff425

Browse files
author
Alexandru Scvortov
committed
add test for the other scheme types
1 parent 6211de7 commit 19ff425

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/src/com/rabbitmq/client/test/AmqpUriTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public void testUriParsing()
3030
/* From the spec (subset of the tests) */
3131
parseSuccess("amqp://user:pass@host:10000/vhost",
3232
"user", "pass", "host", 10000, "vhost");
33-
parseSuccess("amqp://user%61:%61pass@host:10000/v%2fhost",
33+
parseSuccess("aMQps://user%61:%61pass@host:10000/v%2fhost",
3434
"usera", "apass", "host", 10000, "v/host");
3535
parseSuccess("amqp://host", "guest", "guest", "host", 5672, "/");
3636
parseSuccess("amqp:///vhost",

0 commit comments

Comments
 (0)