lol

nixos/tests: Remove tests.boot.boot* prefixes

As @bobvanderlinden suggests in #13585:

"Looks like that cleans things up quite a bit! Just one aesthetics note,
the boot tests could now be renamed from boot.bootBiosCdrom to
boot.biosCdrom in nixos/tests/boot.nix:L33.

That makes them more consistent with the other tests."

Signed-off-by: aszlig <aszlig@redmoonstudios.org>

aszlig 1f89aa6c e45c211b

+5 -5
+1 -1
nixos/release-combined.nix
··· 63 63 (all nixos.tests.installer.btrfsSimple) 64 64 (all nixos.tests.installer.btrfsSubvols) 65 65 (all nixos.tests.installer.btrfsSubvolDefault) 66 - (all nixos.tests.boot.bootBiosCdrom) 66 + (all nixos.tests.boot.biosCdrom) 67 67 (all nixos.tests.ipv6) 68 68 (all nixos.tests.kde4) 69 69 #(all nixos.tests.lightdm)
+4 -4
nixos/tests/boot.nix
··· 30 30 ''; 31 31 }; 32 32 in { 33 - bootBiosCdrom = makeBootTest "bios-cdrom" '' 33 + biosCdrom = makeBootTest "bios-cdrom" '' 34 34 cdrom => glob("${iso}/iso/*.iso") 35 35 ''; 36 - bootBiosUsb = makeBootTest "bios-usb" '' 36 + biosUsb = makeBootTest "bios-usb" '' 37 37 usb => glob("${iso}/iso/*.iso") 38 38 ''; 39 - bootUefiCdrom = makeBootTest "uefi-cdrom" '' 39 + uefiCdrom = makeBootTest "uefi-cdrom" '' 40 40 cdrom => glob("${iso}/iso/*.iso"), 41 41 bios => '${pkgs.OVMF}/FV/OVMF.fd' 42 42 ''; 43 - bootUefiUsb = makeBootTest "uefi-usb" '' 43 + uefiUsb = makeBootTest "uefi-usb" '' 44 44 usb => glob("${iso}/iso/*.iso"), 45 45 bios => '${pkgs.OVMF}/FV/OVMF.fd' 46 46 '';