nixosTests.xandikos: migrate to runTest

Part Of #386873
This commit is contained in:
Martin Weinelt 2025-03-14 23:38:25 +01:00
parent ae0871bca2
commit ca409e5a02
No known key found for this signature in database
GPG key ID: 87C1E9888F856759
2 changed files with 62 additions and 64 deletions

View file

@ -1285,7 +1285,7 @@ in {
wrappers = handleTest ./wrappers.nix {};
writefreely = handleTest ./web-apps/writefreely.nix {};
wstunnel = runTest ./wstunnel.nix;
xandikos = handleTest ./xandikos.nix {};
xandikos = runTest ./xandikos.nix;
xautolock = runTest ./xautolock.nix;
xfce = runTest ./xfce.nix;
xfce-wayland = runTest ./xfce-wayland.nix;

View file

@ -1,5 +1,4 @@
import ./make-test-python.nix (
{ pkgs, lib, ... }:
{ lib, ... }:
{
name = "xandikos";
@ -70,4 +69,3 @@ import ./make-test-python.nix (
)
'';
}
)