From c782ef5a7994824b06a2a7043fa91d94d0c9ac7d Mon Sep 17 00:00:00 2001 From: a-kenji Date: Tue, 6 May 2025 18:14:43 +0200 Subject: [PATCH] container-test-driver: Fix test naming Fix the container test naming, as this otherwise can be very confusing. --- lib/test/container-test-driver/driver-module.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/test/container-test-driver/driver-module.nix b/lib/test/container-test-driver/driver-module.nix index fbf647747..065f07526 100644 --- a/lib/test/container-test-driver/driver-module.nix +++ b/lib/test/container-test-driver/driver-module.nix @@ -92,7 +92,7 @@ in lib.lazyDerivation { # lazyDerivation improves performance when only passthru items and/or meta are used. derivation = hostPkgs.stdenv.mkDerivation { - name = "vm-test-run-${config.name}"; + name = "container-test-run-${config.name}"; requiredSystemFeatures = [ "uid-range" ];