Fix a broken skip

This commit is contained in:
Brian Fraser fraserb@gmail.com
2012-08-21 14:44:55 -03:00
parent 615c5ad508
commit e9fc764e02

View File

@@ -16,7 +16,7 @@ use HTTPMicro;
local $EVAL_ERROR; local $EVAL_ERROR;
eval { require HTTP::Tiny }; eval { require HTTP::Tiny };
if ( $EVAL_ERROR ) { if ( $EVAL_ERROR ) {
skip_all("HTTP::Tiny is not installed, not testing compat"); plan skip_all => "HTTP::Tiny is not installed, not testing compat";
} }
my $test_url = "http://www.google.com"; my $test_url = "http://www.google.com";