summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
authorArtturin <Artturin@artturin.com>2022-04-20 17:40:48 +0300
committerArtturin <Artturin@artturin.com>2022-04-22 16:24:27 +0300
commitf1c7f19e49190cf58041908f9c194431e2513688 (patch)
tree13e0f07e1707d57a02b8d49e98fa3ae269624ac4 /pkgs/games
parent250ef1ff392b938415726a9331a30012573efaea (diff)
downloadnixpkgs-f1c7f19e49190cf58041908f9c194431e2513688.tar
nixpkgs-f1c7f19e49190cf58041908f9c194431e2513688.tar.gz
nixpkgs-f1c7f19e49190cf58041908f9c194431e2513688.tar.bz2
nixpkgs-f1c7f19e49190cf58041908f9c194431e2513688.tar.lz
nixpkgs-f1c7f19e49190cf58041908f9c194431e2513688.tar.xz
nixpkgs-f1c7f19e49190cf58041908f9c194431e2513688.tar.zst
nixpkgs-f1c7f19e49190cf58041908f9c194431e2513688.zip
treewide: testVersion -> testers.testVersion
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/lgogdownloader/default.nix4
-rw-r--r--pkgs/games/opensupaplex/default.nix4
-rw-r--r--pkgs/games/warzone2100/default.nix4
3 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/games/lgogdownloader/default.nix b/pkgs/games/lgogdownloader/default.nix
index 0c40d537fce..ab029e055aa 100644
--- a/pkgs/games/lgogdownloader/default.nix
+++ b/pkgs/games/lgogdownloader/default.nix
@@ -11,7 +11,7 @@
 , rhash
 , tinyxml-2
 , help2man
-, testVersion
+, testers
 , lgogdownloader
 }:
 
@@ -43,7 +43,7 @@ stdenv.mkDerivation rec {
   ];
 
   passthru.tests = {
-    version = testVersion { package = lgogdownloader; };
+    version = testers.testVersion { package = lgogdownloader; };
   };
 
   meta = with lib; {
diff --git a/pkgs/games/opensupaplex/default.nix b/pkgs/games/opensupaplex/default.nix
index d3f8155f546..dc5d9aae690 100644
--- a/pkgs/games/opensupaplex/default.nix
+++ b/pkgs/games/opensupaplex/default.nix
@@ -4,7 +4,7 @@
 , fetchurl
 , makeDesktopItem
 , copyDesktopItems
-, testVersion
+, testers
 , opensupaplex
 , SDL2
 , SDL2_mixer
@@ -62,7 +62,7 @@ stdenv.mkDerivation rec {
     runHook postInstall
   '';
 
-  passthru.tests.version = testVersion {
+  passthru.tests.version = testers.testVersion {
     package = opensupaplex;
     command = "opensupaplex --help";
     version = "v${version}";
diff --git a/pkgs/games/warzone2100/default.nix b/pkgs/games/warzone2100/default.nix
index a44f965b0e5..2df306d686f 100644
--- a/pkgs/games/warzone2100/default.nix
+++ b/pkgs/games/warzone2100/default.nix
@@ -26,7 +26,7 @@
 , vulkan-loader
 , shaderc
 
-, testVersion
+, testers
 , warzone2100
 
 , withVideos ? false
@@ -104,7 +104,7 @@ stdenv.mkDerivation rec {
   '';
 
   passthru.tests = {
-    version = testVersion {
+    version = testers.testVersion {
       package = warzone2100;
       # The command always exits with code 1
       command = "(warzone2100 --version || [ $? -eq 1 ])";