diff options
author | lpsolit%gmail.com <> | 2005-10-07 03:33:46 +0000 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-10-07 03:33:46 +0000 |
commit | 73895d59f694c2f0b927d77f0a9ca65385139969 (patch) | |
tree | 55aa7be714856b7f8f5387068873924af0eb1dc5 /testserver.pl | |
parent | Bug 310171 Update css for private comments in real-time (diff) | |
download | bugzilla-73895d59f694c2f0b927d77f0a9ca65385139969.tar.gz bugzilla-73895d59f694c2f0b927d77f0a9ca65385139969.tar.bz2 bugzilla-73895d59f694c2f0b927d77f0a9ca65385139969.zip |
Bug 311091: Remove unused image files ant.jpg and skins/standard/index/front.jpg - Patch by Olav Vitters <bugzilla-mozilla@bkor.dhs.org> r=LpSolit a=justdave
Diffstat (limited to 'testserver.pl')
-rwxr-xr-x | testserver.pl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/testserver.pl b/testserver.pl index b768dc939..7d3e2b15c 100755 --- a/testserver.pl +++ b/testserver.pl @@ -83,14 +83,14 @@ to validate webservergroup.\n"; } -# Try to fetch a static file (ant.jpg) +# Try to fetch a static file (front.png) $ARGV[0] =~ s/\/$//; -my $url = $ARGV[0] . "/ant.jpg"; +my $url = $ARGV[0] . "/skins/standard/index/front.png"; if (fetch($url)) { - print "TEST-OK Got ant picture.\n"; + print "TEST-OK Got front picture.\n"; } else { print -"TEST-FAILED Fetch of ant.jpg failed +"TEST-FAILED Fetch of skins/standard/index/front.png failed Your webserver could not fetch $url. Check your webserver configuration and try again.\n"; exit(1); |