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 2d29550e5d formatting
2d29550e5d is described below
commit 2d29550e5d641730f68d12985a2f1c309c8626eb
Author: Paul King <[email protected]>
AuthorDate: Sat Mar 22 14:07:30 2025 +1000
formatting
---
src/test/groovy/lang/GroovySystemTest.groovy | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/src/test/groovy/lang/GroovySystemTest.groovy
b/src/test/groovy/lang/GroovySystemTest.groovy
index 1b4eecb594..846934561b 100644
--- a/src/test/groovy/lang/GroovySystemTest.groovy
+++ b/src/test/groovy/lang/GroovySystemTest.groovy
@@ -34,7 +34,9 @@ class GroovySystemTest extends GroovyTestCase {
assert GroovySystem.getVersion()
// so we can check these values in test reports
println GroovySystem.getVersion()
- println System.getProperties()
- println System.getenv()
+ println '\nSystem properties:'
+ println System.getProperties().entrySet().join('\n')
+ println '\nEnvironment variables:'
+ println System.getenv().entrySet().join('\n')
}
}