From 5c26a8df69f55520b68a402875a22fa6a7f6c2bf Mon Sep 17 00:00:00 2001 From: Simon Verhoeven Date: Fri, 15 Sep 2023 19:10:44 +0200 Subject: [PATCH] doc: fix method name --- spring-graphql-docs/modules/ROOT/pages/testing.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-graphql-docs/modules/ROOT/pages/testing.adoc b/spring-graphql-docs/modules/ROOT/pages/testing.adoc index c27e76a18..5a2f00f5b 100644 --- a/spring-graphql-docs/modules/ROOT/pages/testing.adoc +++ b/spring-graphql-docs/modules/ROOT/pages/testing.adoc @@ -439,7 +439,7 @@ You can register an error filter at the builder level, to apply to all tests: ---- If you want to verify that an error does exist, and in contrast to `filter`, throw an -assertion error if it doesn't, then use `exepect` instead: +assertion error if it doesn't, then use `expect` instead: [source,java,indent=0,subs="verbatim,quotes"] ----