From cfea098e12fca286eaa620e531d83980cfe1f9e4 Mon Sep 17 00:00:00 2001 From: Ignacio Vera Date: Tue, 21 Feb 2023 13:20:32 +0100 Subject: [PATCH] Show how to disable system assert during testing (#93971) We only show how to disable user asserts during testing, we should show how to disable system asserts too. --- TESTING.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TESTING.asciidoc b/TESTING.asciidoc index 82350c1f4715..186ac155000d 100644 --- a/TESTING.asciidoc +++ b/TESTING.asciidoc @@ -70,7 +70,7 @@ When running Elasticsearch with `./gradlew run`, assertions are enabled by default. To disable them, add the following command line option: ------------------------- --Dtests.jvm.argline="-da" +-Dtests.jvm.argline="-da -dsa" ------------------------- ==== Distribution