From 2aac43e1e94cd0d91bf012847e410c42d1244381 Mon Sep 17 00:00:00 2001 From: Aurh1l Date: Fri, 30 May 2025 16:08:55 +0200 Subject: [PATCH] Fix typo closing bracket in example --- .../ROOT/pages/testing/testcontext-framework/executing-sql.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework-docs/modules/ROOT/pages/testing/testcontext-framework/executing-sql.adoc b/framework-docs/modules/ROOT/pages/testing/testcontext-framework/executing-sql.adoc index 967f774288f5..44613c348322 100644 --- a/framework-docs/modules/ROOT/pages/testing/testcontext-framework/executing-sql.adoc +++ b/framework-docs/modules/ROOT/pages/testing/testcontext-framework/executing-sql.adoc @@ -250,7 +250,7 @@ Java:: @SqlGroup({ @Sql(scripts = "/test-schema.sql", config = @SqlConfig(commentPrefix = "`")), @Sql("/test-user-data.sql") - )} + }) void userTest() { // run code that uses the test schema and test data }