From d65243dcef837233696bedb61e323ca2fd007ecf Mon Sep 17 00:00:00 2001 From: Blake Smith Date: Tue, 5 Nov 2024 14:11:02 -0600 Subject: [PATCH] nixos/gotosocial: fix failing tests Fixes: https://github.com/NixOS/nixpkgs/issues/353896 Upstream gotosocial started caching instance user count in: https://github.com/superseriousbusiness/gotosocial/commit/4592e290872e0208d03189aea4f410cd47a5dc1d --- nixos/tests/web-apps/gotosocial.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/nixos/tests/web-apps/gotosocial.nix b/nixos/tests/web-apps/gotosocial.nix index f9d28c2b8b99..49e8400533bc 100644 --- a/nixos/tests/web-apps/gotosocial.nix +++ b/nixos/tests/web-apps/gotosocial.nix @@ -21,7 +21,6 @@ machine.wait_for_open_port(8081) # check user registration via cli - machine.succeed("curl -sS -f http://localhost:8081/nodeinfo/2.0 | jq '.usage.users.total' | grep -q '^0$'") machine.succeed("gotosocial-admin account create --username nickname --email email@example.com --password kurtz575VPeBgjVm") machine.succeed("curl -sS -f http://localhost:8081/nodeinfo/2.0 | jq '.usage.users.total' | grep -q '^1$'") '';