Author: rhuijben
Date: Thu Oct 15 22:10:43 2015
New Revision: 1708899
URL: http://svn.apache.org/viewvc?rev=1708899&view=rev
Log:
Fix an unintended additional test.
* test/test_ssl.c
(test_ssl_alpn_negotiate): Make the server return the expected protocol.
Modified:
serf/trunk/test/test_ssl.c
Modified: serf/trunk/test/test_ssl.c
URL: http://svn.apache.org/viewvc/serf/trunk/test/test_ssl.c?rev=1708899&r1=1708898&r2=1708899&view=diff
==============================================================================
--- serf/trunk/test/test_ssl.c (original)
+++ serf/trunk/test/test_ssl.c Thu Oct 15 22:10:43 2015
@@ -2173,7 +2173,7 @@ static void test_ssl_alpn_negotiate(CuTe
InitMockServers(tb->mh)
SetupServer(WithHTTPS, WithID("server"), WithPort(30080),
- WithProtocol("http/1.1Q"),
+ WithProtocol("http/1.1"),
WithCertificateFilesPrefix(get_srcdir_file(tb->pool,
"test/certs")),
WithCertificateKeyFile(server_key),
|