aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/nixos/tests/paperless.nix
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/nixos/tests/paperless.nix')
-rw-r--r--infra/libkookie/nixpkgs/nixos/tests/paperless.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/infra/libkookie/nixpkgs/nixos/tests/paperless.nix b/infra/libkookie/nixpkgs/nixos/tests/paperless.nix
index 355e7041d3fe..fb83e6f976de 100644
--- a/infra/libkookie/nixpkgs/nixos/tests/paperless.nix
+++ b/infra/libkookie/nixpkgs/nixos/tests/paperless.nix
@@ -23,14 +23,14 @@ import ./make-test-python.nix ({ lib, ... } : {
with subtest("Service gets ready"):
machine.wait_for_unit("paperless-server.service")
# Wait until server accepts connections
- machine.wait_until_succeeds("curl -s localhost:28981")
+ machine.wait_until_succeeds("curl -fs localhost:28981")
with subtest("Test document is consumed"):
machine.wait_until_succeeds(
- "(($(curl -s localhost:28981/api/documents/ | jq .count) == 1))"
+ "(($(curl -fs localhost:28981/api/documents/ | jq .count) == 1))"
)
assert "2005-10-16" in machine.succeed(
- "curl -s localhost:28981/api/documents/ | jq '.results | .[0] | .created'"
+ "curl -fs localhost:28981/api/documents/ | jq '.results | .[0] | .created'"
)
'';
})