From 2e63d50125cbb57a2ce357d403b005cfbb1e650c Mon Sep 17 00:00:00 2001 From: Dimitris Karakasilis Date: Thu, 25 Jan 2024 12:38:41 +0200 Subject: [PATCH] Change test expectation Signed-off-by: Dimitris Karakasilis --- tests/encryption_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/encryption_test.go b/tests/encryption_test.go index 930ed93..6a923d1 100644 --- a/tests/encryption_test.go +++ b/tests/encryption_test.go @@ -359,7 +359,7 @@ kcrypt: It("fails to talk to the server", func() { out, err := vm.Sudo("cat manual-install.txt") Expect(err).ToNot(HaveOccurred(), out) - Expect(out).To(MatchRegexp("could not encrypt partition.*x509: certificate signed by unknown authority")) + Expect(out).To(MatchRegexp("failed to verify certificate: x509: certificate signed by unknown authority")) }) }) })