changeset 1141:d4e779356d8d

Tests: typo.
author Andrey Zelenkov <zelenkov@nginx.com>
date Wed, 01 Mar 2017 19:20:14 +0300
parents 778eae8230e4
children baeebac35a2e
files stream_ssl.t
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/stream_ssl.t
+++ b/stream_ssl.t
@@ -50,7 +50,7 @@ stream {
     ssl_session_tickets off;
 
     # inherited by server "inherits"
-    ssl_password_file password_http;
+    ssl_password_file password_stream;
 
     server {
         listen      127.0.0.1:8080 ssl;
@@ -116,7 +116,7 @@ my $ctx = Net::SSLeay::CTX_new() or die(
 
 $t->write_file('password', 'localhost');
 $t->write_file('password_many', "wrong$CRLF" . "localhost$CRLF");
-$t->write_file('password_http', 'inherits');
+$t->write_file('password_stream', 'inherits');
 
 my $p = fork();
 exec("echo localhost > $d/password_fifo") if $p == 0;