You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by rp...@apache.org on 2020/04/29 05:47:20 UTC

[groovy] branch master updated: GROOVY-9519: update failing test

This is an automated email from the ASF dual-hosted git repository.

rpopma pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/groovy.git


The following commit(s) were added to refs/heads/master by this push:
     new fdb0b08  GROOVY-9519: update failing test
fdb0b08 is described below

commit fdb0b086c8da10f41c0d5d09022cf36ee86bab13
Author: Remko Popma <re...@yahoo.com>
AuthorDate: Wed Apr 29 14:47:08 2020 +0900

    GROOVY-9519: update failing test
---
 .../src/test/groovy/groovy/cli/picocli/CliBuilderTest.groovy            | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/subprojects/groovy-cli-picocli/src/test/groovy/groovy/cli/picocli/CliBuilderTest.groovy b/subprojects/groovy-cli-picocli/src/test/groovy/groovy/cli/picocli/CliBuilderTest.groovy
index 901066a..b1adab8 100644
--- a/subprojects/groovy-cli-picocli/src/test/groovy/groovy/cli/picocli/CliBuilderTest.groovy
+++ b/subprojects/groovy-cli-picocli/src/test/groovy/groovy/cli/picocli/CliBuilderTest.groovy
@@ -1065,7 +1065,7 @@ Usage: groovy [-hV] [-cp] [-pa] [-pr] [--configscript=PARAM]
     }
 
     // GROOVY-9519
-    testIntOptionWithDefaultZeroShouldNotConvertToBooleanFalse() {
+    void testIntOptionWithDefaultZeroShouldNotConvertToBooleanFalse() {
         def cli = new CliBuilder()
         cli.i(type: Integer, longOpt: 'intTest', required: false, args: 1, defaultValue: '0', 'Testing integer with default value 0')