Skip to content

Commit 663d10c

Browse files
authored
fix(docs): Fixing some errors in the dev-guide example. (#5662)
1 parent 30cbbc0 commit 663d10c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/contributing/dev-guide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,11 @@ import (
7070
)
7171

7272
func TestMe(t *testing.T) {
73-
hook := testutils.LogsUnderTestWithLogLeve(log.WarnLevel, t)
73+
hook := testutils.LogsUnderTestWithLogLevel(log.WarnLevel, t)
7474
... function under tests ...
7575
testutils.TestHelperLogContains("example warning message", hook, t)
7676
// provide negative assertion
77-
testuitls.TestHelperLogNotContains("this message should not be shown", hook, t)
77+
testutils.TestHelperLogNotContains("this message should not be shown", hook, t)
7878
}
7979
```
8080

0 commit comments

Comments
 (0)