From 663d10c06ec540f5e23325503cf0af90ad772275 Mon Sep 17 00:00:00 2001 From: Matt Mix <36235043+mwmix@users.noreply.github.com> Date: Sat, 19 Jul 2025 07:32:26 -0400 Subject: [PATCH] fix(docs): Fixing some errors in the dev-guide example. (#5662) --- docs/contributing/dev-guide.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) } ```