diff sub_filter_multi.t @ 1020:196d33c2bb45

Tests: removed TODO and try_run() checks for legacy versions. Also removed now unused spdy.t and shmem prerequisite.
author Andrey Zelenkov <zelenkov@nginx.com>
date Wed, 31 Aug 2016 18:21:07 +0300
parents 882267679006
children
line wrap: on
line diff
--- a/sub_filter_multi.t
+++ b/sub_filter_multi.t
@@ -22,7 +22,7 @@ use Test::Nginx;
 select STDERR; $| = 1;
 select STDOUT; $| = 1;
 
-my $t = Test::Nginx->new()->has(qw/http rewrite sub proxy/);
+my $t = Test::Nginx->new()->has(qw/http rewrite sub proxy/)->plan(42);
 
 my $long_pattern = '0123456789abcdef' x 17;
 
@@ -281,7 +281,7 @@ EOF
 $t->write_file('huge10-02.html', scalar ('01efABC' . $long_pattern) x 1000);
 $t->write_file('huge11.html', scalar ('01efA_Z' . $long_pattern) x 1000);
 
-$t->try_run('no multiple sub_filter')->plan(42);
+$t->run();
 
 ###############################################################################