Details
-
Type:
Improvement
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.8.6
-
Fix Version/s: 2.1.0-rc-1, 1.8.9
-
Component/s: None
-
Labels:
-
Testcase included:yes
-
Number of attachments :
Description
The following test fails, producing [b:2] instead of [a:1,b:2]:
import groovy.util.* def c = new ConfigSlurper('development').parse(""" environments { development { a = 1 } } environments { development { b = 2 } } """) assert c == [a:1,b:2]