Rename IsImageDebug -> IsDebugImage for consistency

This commit is contained in:
Nils Hanke 2022-09-06 13:06:09 +02:00 committed by Nils Hanke
parent dd4ccdd390
commit fe70231f2a
5 changed files with 6 additions and 6 deletions

View file

@ -381,7 +381,7 @@ func TestConfig_IsImageDebug(t *testing.T) {
for name, tc := range testCases {
t.Run(name, func(t *testing.T) {
assert := assert.New(t)
assert.Equal(tc.want, tc.conf.IsImageDebug())
assert.Equal(tc.want, tc.conf.IsDebugImage())
})
}
}