From 94b519104def8b7838f09374db911c6e832b055e Mon Sep 17 00:00:00 2001 From: Erik Verbruggen <erik.verbruggen@nokia.com> Date: Mon, 29 Mar 2010 11:46:25 +0200 Subject: [PATCH] Fixed test case. --- tests/auto/qml/qmldesigner/coretests/testcore.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/auto/qml/qmldesigner/coretests/testcore.cpp b/tests/auto/qml/qmldesigner/coretests/testcore.cpp index 9ad941d260b..622727c938d 100644 --- a/tests/auto/qml/qmldesigner/coretests/testcore.cpp +++ b/tests/auto/qml/qmldesigner/coretests/testcore.cpp @@ -2138,8 +2138,8 @@ void TestCore::testRewriterTransactionRewriter() { RewriterTransaction transaction = view->beginRewriterTransaction(); childNode1 = addChildNode(rootModelNode, "Qt/Rectangle", 4, 6, "data"); - childNode1.variantProperty("x") = "10"; - childNode1.variantProperty("y") = "10"; + childNode1.variantProperty("x") = 10; + childNode1.variantProperty("y") = 10; } QVERIFY(childNode1.isValid()); -- GitLab