浏览代码

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

git-svn-id: trunk@27344 -
michael 11 年之前
父节点
当前提交
07108c150b
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      packages/fcl-json/examples/simpledemo.pp

+ 1 - 1
packages/fcl-json/examples/simpledemo.pp

@@ -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;