[svn] Fixed wrong expected behaviour in Test4.px.

This commit is contained in:
mtortonesi 2006-07-14 06:20:42 -07:00
parent 81f7fd478f
commit 01798261db
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2006-07-14 Mauro Tortonesi <mauro@ferrara.linux.it>
* Test4.px: Fixed wrong expected behaviour.
2006-06-13 Mauro Tortonesi <mauro@ferrara.linux.it>
* Test9.px: Added test for --restrict-file-names=lowercase option.

View File

@ -25,9 +25,12 @@ my %urls = (
my $cmdline = "wget --quiet -O out http://localhost:8080/nonexistent";
my $expected_error_code = 11;
my $expected_error_code = 256;
my %expected_downloaded_files = (
'out' => {
content => "",
}
);
###############################################################################