From 9741b5636e62bea0d9eb2d001c7d3e1823b4ea74 Mon Sep 17 00:00:00 2001 From: Charlie Jones Date: Fri, 13 Sep 2024 09:55:38 -0500 Subject: [PATCH] Fix typo --- internal/goverseer/config/config_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/goverseer/config/config_test.go b/internal/goverseer/config/config_test.go index f9d916e..d7ce5ac 100644 --- a/internal/goverseer/config/config_test.go +++ b/internal/goverseer/config/config_test.go @@ -72,7 +72,7 @@ func TestFromFile(t *testing.T) { assert.NoError(t, err, "Parsing a config file with no Configs should not error") assert.Equal(t, map[string]interface{}(nil), config.Executioner.Config, - "An executor with no Config should have an empty map for the value") + "An executioner with no Config should have an empty map for the value") assert.Equal(t, map[string]interface{}(nil), config.Watcher.Config, "A watcher with no Config should have an empty map for the value") }