Index: gap-utils-0.77/tst/download.tst
===================================================================
--- gap-utils-0.77.orig/tst/download.tst
+++ gap-utils-0.77/tst/download.tst
@@ -1,85 +0,0 @@
-#@local meths, i, urls, pair, url, expected, res1, good1, n, file, res2, good2, contents, r;
-##############################################################################
-##
-#W  download.tst               Utils Package                     Thomas Breuer
-##
-#Y  Copyright (C) 2022, The GAP Group
-##
-
-gap> ReadPackage( "utils", "tst/loadall.g" );;
-gap> UtilsLoadingComplete;
-true
-
-##  Test the available Download methods
-gap> meths:= List( Filtered( Download_Methods, r -> r.isAvailable() ),
->                  ShallowCopy );;
-gap> for i in [ 1 .. Length( meths ) ] do
->      meths[i].position:= String( i );
->    od;
-gap> urls:= [ # a http url that gets redirected to https
->             [ "http://www.gap-system.org/Packages/utils.html", true ],
->             # a http url that works as such
->             [ "http://www.math.rwth-aachen.de/index.html", true ],
->             # a https url that exists
->             [ "https://www.gap-system.org/Packages/utils.html", true ],
->             # a https url that does not exist
->             [ "https://www.gap-system.org/Packages/utilsxxx.html", false ],
->           ];;
-
-##  The problem is that the methods do not behave consistently
-##  in the case of failure.
-##  (Well, they even do not agree what failure means.)
-##  The test results depend on which methods are available at runtime,
-##  which makes them useless as automatic tests.
-##  Thus we test only working http and https urls.
-gap> urls:= urls{ [ 2, 3 ] };;
-gap> for pair in urls do
->      url:= pair[1];
->      expected:= pair[2];
->      res1:= List( meths, r -> [ r.download( url, rec() ), r.position ] );;
->      good1:= Filtered( res1, r -> r[1].success = true );;
->      if expected = false and Length( good1 ) > 0 then
->        Print( "success for url ", url, "?\n" );
->      fi;
->      n:= Length( Set( good1, r -> r[1].result ) );
->      if n > 1 then
->        Print( "different results (", n, ") for url ", url, "\n" );
->      fi;
->      file:= Filename( DirectoryTemporary(), "test" );
->      res2:= List( meths,
->               r -> [ r.download( url,
->                          rec( target:= Concatenation( file, r.position ) ) ),
->                      r.position ] );;
->      good2:= Filtered( res2, r -> r[1].success = true );;
->      if expected = false and Length( good2 ) > 0 then
->        Print( "success for url ", url, "?\n" );
->      fi;
->      if Length( good1 ) <> Length( good2 ) then
->        Print( "different success cases for url ", url, "\n" );
->      fi;
->      if Length( good1 ) > 0 then
->        contents:= good1[1][1].result;
->        for r in good2 do
->          if contents <> StringFile( Concatenation( file, r[2] ) ) then
->            Print( "different files and contents for url ", url, "\n" );
->          fi;
->        od;
->      fi;
->    od;
-
-##  the example from the manual
-gap> url:= "https://www.gap-system.org/Packages/utils.html";;
-gap> res1:= Download( url );;
-gap> res1.success;
-true
-gap> IsBound( res1.result ) and IsString( res1.result );
-true
-gap> res2:= Download( Concatenation( url, "xxx" ) );;
-gap> res2.success;
-false
-gap> IsBound( res2.error ) and IsString( res2.error );
-true
-
-#############################################################################
-##
-#E
