From e94c2243c66f2353b009bcad5c3a866b94bd7cd3 Mon Sep 17 00:00:00 2001 From: Dominik Schulz Date: Sun, 10 Mar 2024 15:00:15 +0100 Subject: [PATCH] Fix integration test Signed-off-by: Dominik Schulz --- tests/audit_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/audit_test.go b/tests/audit_test.go index d8c8fd8cc8..538e8c9b56 100644 --- a/tests/audit_test.go +++ b/tests/audit_test.go @@ -17,7 +17,7 @@ func TestAudit(t *testing.T) { t.Run("audit the test store", func(t *testing.T) { out, err := ts.run("audit") require.Error(t, err) - assert.Contains(t, out, "Password is too short") - assert.Contains(t, out, "weak password") + assert.Contains(t, out, "crunchy") + assert.Contains(t, out, "zxcvbn") }) }