Skip to content

Commit

Permalink
avoid querying a broken server
Browse files Browse the repository at this point in the history
  • Loading branch information
moritz committed Nov 23, 2013
1 parent 8817dbd commit 97fd14b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions t/basic-auth.t
Expand Up @@ -26,10 +26,10 @@ is(
'Base64 encoding works'
);

$basic-auth-url ~~ s/^https/http/;
my $html = LWP::Simple.get($basic-auth-url);
ok($html.match('protected'), 'Got protected url');

# # URL seems to have stopped working
# $basic-auth-url ~~ s/^https/http/;
# my $html = LWP::Simple.get($basic-auth-url);
# ok($html.match('protected'), 'Got protected url');

done;

0 comments on commit 97fd14b

Please sign in to comment.