summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorlucasew <lucas59356@gmail.com>2023-10-22 21:08:26 -0300
committerlucasew <lucas59356@gmail.com>2023-10-22 22:39:22 -0300
commit4ec81766c24419286ee41b39c04b502ecb770d4d (patch)
tree2779e70639094cf1bd6ed7b746d53f4ec5cd82b0 /nixos
parent185d0d9900c0cff028bb0cf5b91f41d5e8a62fed (diff)
downloadnixpkgs-4ec81766c24419286ee41b39c04b502ecb770d4d.tar
nixpkgs-4ec81766c24419286ee41b39c04b502ecb770d4d.tar.gz
nixpkgs-4ec81766c24419286ee41b39c04b502ecb770d4d.tar.bz2
nixpkgs-4ec81766c24419286ee41b39c04b502ecb770d4d.tar.lz
nixpkgs-4ec81766c24419286ee41b39c04b502ecb770d4d.tar.xz
nixpkgs-4ec81766c24419286ee41b39c04b502ecb770d4d.tar.zst
nixpkgs-4ec81766c24419286ee41b39c04b502ecb770d4d.zip
cockpit: 287 -> 303
Signed-off-by: lucasew <lucas59356@gmail.com>
Diffstat (limited to 'nixos')
-rw-r--r--nixos/tests/cockpit.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/nixos/tests/cockpit.nix b/nixos/tests/cockpit.nix
index 6f86d1e2c46..e7165b97901 100644
--- a/nixos/tests/cockpit.nix
+++ b/nixos/tests/cockpit.nix
@@ -50,7 +50,8 @@ import ./make-test-python.nix (
             options = Options()
             options.add_argument("--headless")
 
-            driver = webdriver.Firefox(options=options)
+            service = webdriver.FirefoxService(executable_path="${lib.getExe pkgs.geckodriver}")  # noqa: E501
+            driver = webdriver.Firefox(options=options, service=service)
 
             driver.implicitly_wait(10)