about summary refs log tree commit diff
path: root/nixpkgs/nixos/tests/vector.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/nixos/tests/vector.nix')
-rw-r--r--nixpkgs/nixos/tests/vector.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixpkgs/nixos/tests/vector.nix b/nixpkgs/nixos/tests/vector.nix
index ecf94e33ff17..a55eb4e012c5 100644
--- a/nixpkgs/nixos/tests/vector.nix
+++ b/nixpkgs/nixos/tests/vector.nix
@@ -21,7 +21,7 @@ with pkgs.lib;
               type = "file";
               inputs = [ "journald" ];
               path = "/var/lib/vector/logs.log";
-              encoding = { codec = "ndjson"; };
+              encoding = { codec = "json"; };
             };
           };
         };
@@ -31,7 +31,7 @@ with pkgs.lib;
     # ensure vector is forwarding the messages appropriately
     testScript = ''
       machine.wait_for_unit("vector.service")
-      machine.succeed("test -f /var/lib/vector/logs.log")
+      machine.wait_for_file("/var/lib/vector/logs.log")
     '';
   };
 }