summary refs log tree commit diff
path: root/nixos/tests
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2016-03-01 19:02:36 +0100
committeraszlig <aszlig@redmoonstudios.org>2016-03-01 19:02:36 +0100
commit1f89aa6c7f2f16c8c0834cfa65b8484fecd72af3 (patch)
treefcf09c9e25ad0f908d4fa35a9daffe0ebfacf654 /nixos/tests
parente45c211b50c6f473e3d92d29e1a8426ec4579f05 (diff)
downloadnixpkgs-1f89aa6c7f2f16c8c0834cfa65b8484fecd72af3.tar
nixpkgs-1f89aa6c7f2f16c8c0834cfa65b8484fecd72af3.tar.gz
nixpkgs-1f89aa6c7f2f16c8c0834cfa65b8484fecd72af3.tar.bz2
nixpkgs-1f89aa6c7f2f16c8c0834cfa65b8484fecd72af3.tar.lz
nixpkgs-1f89aa6c7f2f16c8c0834cfa65b8484fecd72af3.tar.xz
nixpkgs-1f89aa6c7f2f16c8c0834cfa65b8484fecd72af3.tar.zst
nixpkgs-1f89aa6c7f2f16c8c0834cfa65b8484fecd72af3.zip
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>
Diffstat (limited to 'nixos/tests')
-rw-r--r--nixos/tests/boot.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/nixos/tests/boot.nix b/nixos/tests/boot.nix
index 6a1d330155e..905d1645882 100644
--- a/nixos/tests/boot.nix
+++ b/nixos/tests/boot.nix
@@ -30,17 +30,17 @@ let
         '';
     };
 in {
-    bootBiosCdrom = makeBootTest "bios-cdrom" ''
+    biosCdrom = makeBootTest "bios-cdrom" ''
         cdrom => glob("${iso}/iso/*.iso")
       '';
-    bootBiosUsb = makeBootTest "bios-usb" ''
+    biosUsb = makeBootTest "bios-usb" ''
         usb => glob("${iso}/iso/*.iso")
       '';
-    bootUefiCdrom = makeBootTest "uefi-cdrom" ''
+    uefiCdrom = makeBootTest "uefi-cdrom" ''
         cdrom => glob("${iso}/iso/*.iso"),
         bios => '${pkgs.OVMF}/FV/OVMF.fd'
       '';
-    bootUefiUsb = makeBootTest "uefi-usb" ''
+    uefiUsb = makeBootTest "uefi-usb" ''
         usb => glob("${iso}/iso/*.iso"),
         bios => '${pkgs.OVMF}/FV/OVMF.fd'
       '';