Skip to content

Commit

Permalink
fix: test failed after fixing lint (minor string case issue)
Browse files Browse the repository at this point in the history
  • Loading branch information
FMotalleb committed Jun 16, 2024
1 parent e5bb171 commit 2eb2e8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/config_validtor_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ func TestConfig_Validate_LogFormatFails(t *testing.T) {
log, _ := mocklogger.HijackOutput(logrus.New())
err := cfg.Validate(log.WithField("test", "test"))
assert.Error(t, err)
assert.Equal(t, "Given Logger format: `unknown`", err.Error())
assert.Equal(t, "given logger format: `unknown`", err.Error())
}

func TestConfig_Validate_LogLevelFails(t *testing.T) {
Expand Down

0 comments on commit 2eb2e8a

Please sign in to comment.