From 08eff24ddaf88c44c02b9af88cdea77e9896e223 Mon Sep 17 00:00:00 2001 From: jamesread Date: Thu, 4 Nov 2021 08:45:15 +0000 Subject: [PATCH] Spelling mistake --- internal/config/config_helpers_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/config/config_helpers_test.go b/internal/config/config_helpers_test.go index c57c587..698032b 100644 --- a/internal/config/config_helpers_test.go +++ b/internal/config/config_helpers_test.go @@ -27,7 +27,7 @@ func TestFindAction(t *testing.T) { assert.NotNil(t, c.FindAction("a2"), "Find action a2") assert.NotNil(t, c.FindAction("a2").FindArg("Blat"), "Find action argument") - assert.Nil(t, c.FindAction("a2").FindArg("Blatey Cake"), "Find non-existant action argument") + assert.Nil(t, c.FindAction("a2").FindArg("Blatey Cake"), "Find non-existent action argument") - assert.Nil(t, c.FindAction("waffles"), "Find non-existant action") + assert.Nil(t, c.FindAction("waffles"), "Find non-existent action") }