diff options
author | David Garcia Quintas <dgq@google.com> | 2015-08-18 16:11:09 -0700 |
---|---|---|
committer | David Garcia Quintas <dgq@google.com> | 2015-08-18 16:11:09 -0700 |
commit | 7fc37a23856604259a0b048e0df00ef3065a58d8 (patch) | |
tree | 9e3b7622f474d15a43b753912582234b81588e32 /test/core/client_config/uri_parser_test.c | |
parent | beac88ca56f4710e86668f2cbbd80e02e0607f9c (diff) | |
parent | 7ff63f6abad6c49a7b88b036c54075a03433457c (diff) |
Merge branch 'master' of github.com:grpc/grpc into compression-accept-encoding
Diffstat (limited to 'test/core/client_config/uri_parser_test.c')
-rw-r--r-- | test/core/client_config/uri_parser_test.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/core/client_config/uri_parser_test.c b/test/core/client_config/uri_parser_test.c index 3451ca1e8c..d324029c7e 100644 --- a/test/core/client_config/uri_parser_test.c +++ b/test/core/client_config/uri_parser_test.c @@ -60,7 +60,8 @@ int main(int argc, char **argv) { test_succeeds("http://www.google.com:90", "http", "www.google.com:90", ""); test_succeeds("a192.4-df:foo.coom", "a192.4-df", "", "foo.coom"); test_succeeds("a+b:foo.coom", "a+b", "", "foo.coom"); - test_succeeds("zookeeper://127.0.0.1:2181/foo/bar", "zookeeper", "127.0.0.1:2181", "/foo/bar"); + test_succeeds("zookeeper://127.0.0.1:2181/foo/bar", "zookeeper", + "127.0.0.1:2181", "/foo/bar"); test_fails("xyz"); test_fails("http://www.google.com?why-are-you-using-queries"); test_fails("dns:foo.com#fragments-arent-supported-here"); |