diff --git a/tests/ChangeLog b/tests/ChangeLog index 4bc0da93..ae14e497 100644 --- a/tests/ChangeLog +++ b/tests/ChangeLog @@ -1,3 +1,7 @@ +2006-07-14 Mauro Tortonesi + + * Test4.px: Fixed wrong expected behaviour. + 2006-06-13 Mauro Tortonesi * Test9.px: Added test for --restrict-file-names=lowercase option. diff --git a/tests/Test4.px b/tests/Test4.px index 60a4fd83..d0bc67c1 100755 --- a/tests/Test4.px +++ b/tests/Test4.px @@ -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 => "", + } ); ###############################################################################