nixosTests.fcitx5: handleTest -> runTest

This commit is contained in:
Sizhe Zhao 2025-06-07 21:32:50 +08:00
parent 748a3d5266
commit a5e74df22d
No known key found for this signature in database
GPG Key ID: ED1807251A7DA08F
2 changed files with 140 additions and 142 deletions

View File

@ -482,7 +482,7 @@ in
fakeroute = runTest ./fakeroute.nix;
fancontrol = runTest ./fancontrol.nix;
fanout = runTest ./fanout.nix;
fcitx5 = handleTest ./fcitx5 { };
fcitx5 = runTest ./fcitx5;
fedimintd = runTest ./fedimintd.nix;
fenics = runTest ./fenics.nix;
ferm = runTest ./ferm.nix;

View File

@ -1,6 +1,5 @@
import ../make-test-python.nix (
{ lib, ... }:
rec {
{ lib, ... }:
{
name = "fcitx5";
meta.maintainers = with lib.maintainers; [ nevivurn ];
@ -165,5 +164,4 @@ import ../make-test-python.nix (
file_content = machine.succeed("cat ${user.home}/fcitx_test.out")
assert file_content == "\n", f'output does not match input:\n{file_content}'
'';
}
)
}