changeset 537:202de1d281e5

Tests: whitespace fixes.
author Sergey Kandaurov <pluknet@nginx.com>
date Tue, 24 Mar 2015 14:44:32 +0300
parents c2481c6b748f
children 1ab33feebbfd
files body.t body_chunked.t
diffstat 2 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/body.t
+++ b/body.t
@@ -124,9 +124,9 @@ like(http_get_body('/single', '012345678
 # pipelined requests
 
 like(http_get_body('/', '0123456789', '0123456789' x 128, '0123456789' x 512,
-        'foobar'), qr/X-Body: foobar\x0d?$/ms, 'body pipelined');
+	'foobar'), qr/X-Body: foobar\x0d?$/ms, 'body pipelined');
 like(http_get_body('/', '0123456789' x 128, '0123456789' x 512, '0123456789',
-        'foobar'), qr/X-Body: foobar\x0d?$/ms, 'body pipelined 2');
+	'foobar'), qr/X-Body: foobar\x0d?$/ms, 'body pipelined 2');
 
 like(http_get_body('/discard', '0123456789', '0123456789' x 128,
 	'0123456789' x 512, 'foobar'), qr/(TEST.*){4}/ms,
--- a/body_chunked.t
+++ b/body_chunked.t
@@ -131,7 +131,7 @@ like(http_get_body('/discard', '01234567
 # proxy_next_upstream
 
 like(http_get_body('/next', '0123456789'),
-        qr/X-Body: 0123456789\x0d?$/ms, 'body chunked next upstream');
+	qr/X-Body: 0123456789\x0d?$/ms, 'body chunked next upstream');
 
 ###############################################################################