* Patch from Michael van Ham to fix object from array of const demo (bug ID 25935)

git-svn-id: trunk@27344 -
This commit is contained in:
michael 2014-03-29 18:47:48 +00:00
parent 48a7259ec3
commit 07108c150b

View File

@ -89,7 +89,7 @@ begin
EndTest('Array value from array of const',TJSONArray.Create([1,'a',2,'b']));
EndTest('Empty Object value',TJSONObject.Create);
// Name, Value, name, value
EndTest('Object from array of const',TJSONArray.Create(['a',1,'b',True,'C',Nil]));
EndTest('Object from array of const',TJSONObject.Create(['a',1,'b',True,'C',Nil]));
end;