From bdc70ea03cd10981e3cc8c47949c81d705fb90ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Nogueira?= <22820003+c4f3z1n@users.noreply.github.com> Date: Thu, 17 Apr 2025 01:50:27 +0200 Subject: [PATCH] nixosTests.nix-ld: remove redundant test with alias https://github.com/NixOS/nixpkgs/pull/335290 --- nixos/tests/nix-ld.nix | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/nixos/tests/nix-ld.nix b/nixos/tests/nix-ld.nix index 03f5c5e89fbf..9a1f7110eeea 100644 --- a/nixos/tests/nix-ld.nix +++ b/nixos/tests/nix-ld.nix @@ -26,15 +26,4 @@ in machine.succeed("hello") ''; }; - nix-ld-rs = makeTest { - name = "nix-ld-rs"; - nodes.machine = { - imports = [ shared ]; - programs.nix-ld.package = pkgs.nix-ld-rs; - }; - testScript = '' - start_all() - machine.succeed("hello") - ''; - }; }