summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativetext
diff options
context:
space:
mode:
authorToby Tomkins <toby.tomkins@nokia.com>2012-06-27 14:49:57 +1000
committerQt by Nokia <qt-info@nokia.com>2012-06-27 07:12:56 +0200
commit47c503a41f2e0f5502c64155b53ffe71264ae320 (patch)
tree28bc83cb90a9239fe1ee7d8f5fa1815c769a8d09 /tests/auto/declarative/qdeclarativetext
parent934f52c270efeb19ecccc77f80996c8ab8068221 (diff)
Modify all attribute error messages and remove insignificant test flag.
Change-Id: I8b4e2eaad11174ca82f0109394de4b333087bd8c Reviewed-by: Matthew Vogt <matthew.vogt@nokia.com>
Diffstat (limited to 'tests/auto/declarative/qdeclarativetext')
-rw-r--r--tests/auto/declarative/qdeclarativetext/qdeclarativetext.pro1
-rw-r--r--tests/auto/declarative/qdeclarativetext/tst_qdeclarativetext.cpp4
2 files changed, 2 insertions, 3 deletions
diff --git a/tests/auto/declarative/qdeclarativetext/qdeclarativetext.pro b/tests/auto/declarative/qdeclarativetext/qdeclarativetext.pro
index b0155932..6a0e0268 100644
--- a/tests/auto/declarative/qdeclarativetext/qdeclarativetext.pro
+++ b/tests/auto/declarative/qdeclarativetext/qdeclarativetext.pro
@@ -21,4 +21,3 @@ symbian: {
}
CONFIG += parallel_test
-CONFIG+=insignificant_test # QTQAINFRA-428
diff --git a/tests/auto/declarative/qdeclarativetext/tst_qdeclarativetext.cpp b/tests/auto/declarative/qdeclarativetext/tst_qdeclarativetext.cpp
index d2ae384a..e6046134 100644
--- a/tests/auto/declarative/qdeclarativetext/tst_qdeclarativetext.cpp
+++ b/tests/auto/declarative/qdeclarativetext/tst_qdeclarativetext.cpp
@@ -1312,11 +1312,11 @@ void tst_qdeclarativetext::testQtQuick11Attributes_data()
<< ":1 \"Text.lineHeightMode\" is not available in QtQuick 1.0.\n";
QTest::newRow("lineCount") << "property int foo: lineCount"
- << "<Unknown File>:1: ReferenceError: Can't find variable: lineCount"
+ << "<Unknown File>: ReferenceError: Can't find variable: lineCount"
<< "";
QTest::newRow("truncated") << "property bool foo: truncated"
- << "<Unknown File>:1: ReferenceError: Can't find variable: truncated"
+ << "<Unknown File>: ReferenceError: Can't find variable: truncated"
<< "";
}