jre-minimal: remove unnecessary test file

Looks like we meant to move this file to `tests/test_jre_minimal.nix` but
somehow we accidentally duplicated it.
This commit is contained in:
Arnout Engelen 2021-08-05 09:20:41 +02:00
parent c464dc811b
commit 380b350fb3
No known key found for this signature in database
GPG key ID: 061107B0F74A6DAA

View file

@ -1,16 +0,0 @@
{ runCommand
, callPackage
, jdk
, jre_minimal
}:
let
hello = callPackage tests/hello.nix {
jdk = jdk;
jre = jre_minimal;
};
in
runCommand "test" {} ''
${hello}/bin/hello | grep "Hello, world!"
touch $out
''