Skip to content

Commit

Permalink
Merge branch '2.3.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Scott Brown committed Nov 13, 2013
2 parents 1f7354f + f4a1197 commit 382053a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class GPathCollectionDataBindingSourceSpec extends Specification {
</person>
<person>
<firstName>Steve</firstName>
<lastName>Hacket</lastName>
<lastName>Hackett</lastName>
</person>
</list>
''')
Expand All @@ -38,6 +38,6 @@ class GPathCollectionDataBindingSourceSpec extends Specification {
dataBindingSources[1]['lastName'] == 'Banks'
dataBindingSources[2] instanceof DataBindingSource
dataBindingSources[2]['firstName'] == 'Steve'
dataBindingSources[2]['lastName'] == 'Hacket'
dataBindingSources[2]['lastName'] == 'Hackett'
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class CollectionBindDataMethodSpec extends Specification {
</person>
<person>
<firstName>Steve</firstName>
<lastName>Hacket</lastName>
<lastName>Hackett</lastName>
</person>
</people>
'''
Expand All @@ -39,7 +39,7 @@ class CollectionBindDataMethodSpec extends Specification {
people[1].lastName == 'Banks'
people[2] instanceof Person
people[2].firstName == 'Steve'
people[2].lastName == 'Hacket'
people[2].lastName == 'Hackett'
}

void 'Test bindData with a CollectionDataBindingSource argument using JSON'() {
Expand Down

0 comments on commit 382053a

Please sign in to comment.