You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2021/08/01 01:27:32 UTC

[groovy] branch master updated: minor refactor: make test more resilient

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

paulk 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 f9010d0  minor refactor: make test more resilient
f9010d0 is described below

commit f9010d07b388df1e11daca57b70681ae53ca2056
Author: Paul King <pa...@asert.com.au>
AuthorDate: Sun Aug 1 11:27:11 2021 +1000

    minor refactor: make test more resilient
---
 src/test/groovy/transform/stc/FieldsAndPropertiesSTCTest.groovy | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/test/groovy/transform/stc/FieldsAndPropertiesSTCTest.groovy b/src/test/groovy/transform/stc/FieldsAndPropertiesSTCTest.groovy
index 99ea5df..be5b8c2 100644
--- a/src/test/groovy/transform/stc/FieldsAndPropertiesSTCTest.groovy
+++ b/src/test/groovy/transform/stc/FieldsAndPropertiesSTCTest.groovy
@@ -247,6 +247,7 @@ class FieldsAndPropertiesSTCTest extends StaticTypeCheckingTestCase {
             assert Public.VALUE == 'YY'
             Public.@VALUE = 'ZZ'
             assert Public.@VALUE == 'ZZ'
+            Public.VALUE = null
         '''
     }