about summary refs log tree commit diff
diff options
context:
space:
mode:
authorfranck cuny <franck@lumberjaph.net>2011-04-19 12:10:26 +0200
committerfranck cuny <franck@lumberjaph.net>2011-04-19 12:10:26 +0200
commit4ab50515cd6ebde22192d4b1f596595a4fe2985e (patch)
tree6a7caf288e8dd4bcc4d71ed8e94966d1ae0193b7
parentMerge branch 'topic/dzil' (diff)
downloadplack-middleware-etag-4ab50515cd6ebde22192d4b1f596595a4fe2985e.tar.gz
remove tabs
-rw-r--r--t/01_basic.t8
1 files changed, 4 insertions, 4 deletions
diff --git a/t/01_basic.t b/t/01_basic.t
index 368d5cc..d1db7ba 100644
--- a/t/01_basic.t
+++ b/t/01_basic.t
@@ -81,8 +81,8 @@ test_psgi
         my $req = GET "http://localhost/", 'If-None-Match' => $sha;
         my $res = $cb->($req);
         ok $res->header('ETag');
-	is $res->code, 304;
-	ok !$res->content;
+    is $res->code, 304;
+    ok !$res->content;
     }
 };
 
@@ -94,8 +94,8 @@ test_psgi
         my $req = GET "http://localhost/";
         my $res = $cb->($req);
         ok $res->header('ETag');
-	is $res->code, 200;
-	ok $res->content;
+    is $res->code, 200;
+    ok $res->content;
     }
 };