From 56103f5f70bdc38e459a6f7c033809446b7fd7d3 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Mon, 9 Jan 2023 02:34:55 +0100 Subject: [PATCH] nixos/tests/evcc: Ignore ERROR level messages The version checker fails with an ERROR message, so asserting on that isn't useful for us since 0.110.2. --- nixos/tests/evcc.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/nixos/tests/evcc.nix b/nixos/tests/evcc.nix index c223977a9d82..b445735ede98 100644 --- a/nixos/tests/evcc.nix +++ b/nixos/tests/evcc.nix @@ -88,7 +88,6 @@ import ./make-test-python.nix ({ pkgs, lib, ...} : with subtest("Check journal for errors"): _, output = machine.execute("journalctl -o cat -u evcc.service") assert "FATAL" not in output - assert "ERROR" not in output with subtest("Check systemd hardening"): _, output = machine.execute("systemd-analyze security evcc.service | grep -v '✓'")