diff --git a/docs/contributing/dev-guide.md b/docs/contributing/dev-guide.md index a88632256..8a04c7f6f 100644 --- a/docs/contributing/dev-guide.md +++ b/docs/contributing/dev-guide.md @@ -70,11 +70,11 @@ import ( ) func TestMe(t *testing.T) { - hook := testutils.LogsUnderTestWithLogLeve(log.WarnLevel, t) + hook := testutils.LogsUnderTestWithLogLevel(log.WarnLevel, t) ... function under tests ... testutils.TestHelperLogContains("example warning message", hook, t) // provide negative assertion - testuitls.TestHelperLogNotContains("this message should not be shown", hook, t) + testutils.TestHelperLogNotContains("this message should not be shown", hook, t) } ```