aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/jsextensions
diff options
context:
space:
mode:
authorJake Petroules <jake.petroules@petroules.com>2014-02-26 19:10:11 -0500
committerJoerg Bornemann <joerg.bornemann@digia.com>2014-02-27 11:01:16 +0100
commit33af12a26c7fcd0d6c97e541caaf1765f3daf049 (patch)
tree57bf72cc195d0197eba4869343c8ee64bb36ce81 /tests/auto/blackbox/testdata/jsextensions
parent5ba799c0d1b167500221846289d89091e7f892ea (diff)
Rename PropertyList API functions for better self-documentation.
Change-Id: I5435e99c68646340bf6a2608819cfaef31146646 Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'tests/auto/blackbox/testdata/jsextensions')
-rw-r--r--tests/auto/blackbox/testdata/jsextensions/propertylist.qbs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/blackbox/testdata/jsextensions/propertylist.qbs b/tests/auto/blackbox/testdata/jsextensions/propertylist.qbs
index 94a1e1b31..cdd1c1af3 100644
--- a/tests/auto/blackbox/testdata/jsextensions/propertylist.qbs
+++ b/tests/auto/blackbox/testdata/jsextensions/propertylist.qbs
@@ -22,11 +22,11 @@ Product {
var xmlfile = new TextFile("test.xml", TextFile.ReadOnly);
var propertyList = new PropertyList();
- propertyList.read(xmlfile.readAll());
+ propertyList.readFromString(xmlfile.readAll());
xmlfile.close();
var jsontextfile = new TextFile("test.json", TextFile.WriteOnly);
- jsontextfile.write(propertyList.toJSON());
+ jsontextfile.write(propertyList.toJSONString());
jsontextfile.close();
process = new Process();