From e8b2022746868a6d1843b3ea10f2a2bf0dabfbc5 Mon Sep 17 00:00:00 2001 From: David Dworken Date: Sun, 18 Aug 2024 21:55:24 -0700 Subject: [PATCH] Fix typo in error message --- client/cmd/install.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/cmd/install.go b/client/cmd/install.go index cb1afa4..4503674 100644 --- a/client/cmd/install.go +++ b/client/cmd/install.go @@ -507,7 +507,7 @@ func tweakConfigForTests(configContents string) (string, error) { ret += "\n" } if !(substitutionCount == 2 && removedCount == 2) { - return "", fmt.Errorf("failed to find substitution line in configConents=%#v", configContents) + return "", fmt.Errorf("failed to find substitution line in configContents=%#v", configContents) } return ret, nil }