aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/testlib
diff options
context:
space:
mode:
authorCharles Yin <charles.yin@nokia.com>2011-09-07 16:47:00 +1000
committerQt by Nokia <qt-info@nokia.com>2011-09-07 08:48:02 +0200
commit55a1fde9298474a326a1aa0eba699e5125a32f69 (patch)
treeeda25a335215f7429160f089fca98a4cb1425bbd /src/imports/testlib
parent17330e9cd94a64afb000a63a40b2e9646520a847 (diff)
remove useless debug log
Change-Id: I715135c54db97df38bdd7915a01efbb3596d549a Reviewed-on: http://codereview.qt.nokia.com/4313 Reviewed-by: Charles Yin <charles.yin@nokia.com>
Diffstat (limited to 'src/imports/testlib')
-rw-r--r--src/imports/testlib/TestCase.qml3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/imports/testlib/TestCase.qml b/src/imports/testlib/TestCase.qml
index 6da66b20de..ed8bf55d6b 100644
--- a/src/imports/testlib/TestCase.qml
+++ b/src/imports/testlib/TestCase.qml
@@ -145,7 +145,6 @@ Item {
if ("mapFromItem" in o && "mapToItem" in o) {
return "declarativeitem"; // @todo improve detection of declarative items
} else if ("x" in o && "y" in o && "z" in o) {
- console.log("typeof debug:" + o);
return "vector3d"; // Qt3D vector
}
return "object";
@@ -693,4 +692,4 @@ Item {
if (when && !completed && !running)
qtest_run()
}
-}
+} \ No newline at end of file