diff --git a/config/config_test.go b/config/config_test.go deleted file mode 100644 index e16871a..0000000 --- a/config/config_test.go +++ /dev/null @@ -1,12 +0,0 @@ -package config - -import "testing" - -func Test_LoadConfig_InvalidPath(t *testing.T) { - _, err := Load(LoadConfigInput{Path: "invalid file"}) - expected := "missing safebox config file invalid file" - - if err.Error() != expected { - t.Errorf("Error actual = %v, and Expected = %v", err, expected) - } -}