lxc.tests: update incus.container reference

Without the change the test build attempt fails the evaluation as:

    $ nix build --no-link -f. lxc.tests

       error: attribute 'container' missing

       at pkgs/os-specific/linux/lxc/default.nix:65:19:

           64|   passthru = {
           65|     tests.incus = nixosTests.incus.container;
             |                   ^

This started happening after `container` test was split in two in
c607e70f70 "nixosTests.incus: add test with old and new init".
This commit is contained in:
Sergei Trofimovich 2024-03-02 10:36:43 +00:00
parent b8698cd8d6
commit 936e0ed471

View file

@ -62,7 +62,10 @@ stdenv.mkDerivation rec {
doCheck = true;
passthru = {
tests.incus = nixosTests.incus.container;
tests = {
incus-old-init = nixosTests.incus.container-old-init;
incus-new-init = nixosTests.incus.container-new-init;
};
updateScript = nix-update-script {
extraArgs = [
"-vr"