fix hashfile test that wasn't failing due to eval laziness

See:
7becb1bf1c (r33450554)
This commit is contained in:
Will Dietz 2019-05-07 17:32:01 -05:00 committed by Eelco Dolstra
parent 7becb1bf1c
commit a834861876
No known key found for this signature in database
GPG Key ID: 8170B4726D7198DE
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
let
paths = [ ./this-file-is-definitely-not-there-7392097 "/and/neither/is/this/37293620" ];
in
builtins.concatLists (map (hash: map (builtins.hashFile hash) paths) ["md5" "sha1" "sha256" "sha512"])
toString (builtins.concatLists (map (hash: map (builtins.hashFile hash) paths) ["md5" "sha1" "sha256" "sha512"]))