diff --git a/context/context_test.go b/context/context_test.go index 8da30c9a8..c5b5e7f12 100644 --- a/context/context_test.go +++ b/context/context_test.go @@ -153,4 +153,9 @@ func TestDefaultValuesLoading(t *testing.T) { t.Errorf("Default values not loaded from YAML file") t.Fail() } + + if rs.Values["override"] != "notAtAll" { + t.Error("Default values should not override other values") + t.Fail() + } }