about summary refs log tree commit diff
path: root/tests/sandbox.nix
diff options
context:
space:
mode:
Diffstat (limited to 'tests/sandbox.nix')
-rw-r--r--tests/sandbox.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/sandbox.nix b/tests/sandbox.nix
index 98d29870..9c247da2 100644
--- a/tests/sandbox.nix
+++ b/tests/sandbox.nix
@@ -2,7 +2,6 @@
   name = "sandbox";
 
   machine = { pkgs, lib, ... }: {
-    nixpkgs.config.vuizvui.games = {};
     system.activationScripts.inject-link = ''
       ln -svf ${pkgs.hello} /run/foo-test-sandbox
       ln -svf ${pkgs.gnused} /run/bar-test-sandbox
@@ -23,7 +22,7 @@
         /run/foo-test-sandbox/bin/hello
         echo aaa | /run/bar-test-sandbox/bin/sed -e 's/a/b/g'
       '';
-    in lib.singleton (pkgs.vuizvui.games.buildSandbox testProgram {
+    in lib.singleton (pkgs.vuizvui.buildSandbox testProgram {
       paths.required = [ "/home/foo/existing" ];
       paths.wanted = [ "/home/foo/nonexisting" ];
       paths.runtimeVars = [ "COLLECT_ME" ];