diff options
author | Vika <vika@fireburn.ru> | 2025-01-01 06:49:05 +0300 |
---|---|---|
committer | Vika <vika@fireburn.ru> | 2025-01-01 07:08:33 +0300 |
commit | 5f2f17cfdad67a2374ff98cf7f3ad0edf34c5b0a (patch) | |
tree | 8722d2a49bd1a0e0bac7a2c4a5dc066a05a242d4 /nixos-tests/webmention-test.nix | |
parent | 1a6f10aaaf79c4bb47f0359d82e719d1d5e52f2d (diff) | |
download | kittybox-5f2f17cfdad67a2374ff98cf7f3ad0edf34c5b0a.tar.zst |
Fix Postgres setup in tests
Change-Id: Ibc26d9700faa0c25663146871924ee196dc62274
Diffstat (limited to 'nixos-tests/webmention-test.nix')
-rw-r--r-- | nixos-tests/webmention-test.nix | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/nixos-tests/webmention-test.nix b/nixos-tests/webmention-test.nix index 45e3ff7..105beb8 100644 --- a/nixos-tests/webmention-test.nix +++ b/nixos-tests/webmention-test.nix @@ -16,9 +16,7 @@ in { ensureDatabases = ["kittybox"]; ensureUsers = [ { name = "kittybox"; - ensurePermissions = { - "DATABASE kittybox" = "ALL PRIVILEGES"; - }; + ensureDBOwnership = true; } ]; }; |