summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorDerick Hawcroft <derick.hawcroft@nokia.com>2009-07-08 04:47:21 (GMT)
committerDerick Hawcroft <derick.hawcroft@nokia.com>2009-07-08 04:47:21 (GMT)
commit9e2b47da3b88c63acb1b3a8cb7566f2a1e0e18ff (patch)
tree5a3a4899151c67d52f9509c9a4bb0166caf17da7 /tests
parent291279cc24aa543454953b93b1db026caf0d7eb6 (diff)
downloadQt-9e2b47da3b88c63acb1b3a8cb7566f2a1e0e18ff.zip
Qt-9e2b47da3b88c63acb1b3a8cb7566f2a1e0e18ff.tar.gz
Qt-9e2b47da3b88c63acb1b3a8cb7566f2a1e0e18ff.tar.bz2
make test behave like others
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/qsqlquery/tst_qsqlquery.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qsqlquery/tst_qsqlquery.cpp b/tests/auto/qsqlquery/tst_qsqlquery.cpp
index c94b693..0e30873 100644
--- a/tests/auto/qsqlquery/tst_qsqlquery.cpp
+++ b/tests/auto/qsqlquery/tst_qsqlquery.cpp
@@ -2831,7 +2831,7 @@ void tst_QSqlQuery::task_233829()
QSqlQuery q( db );
QString tableName = qTableName("task_233829");
- QVERIFY_SQL(q,exec("CREATE TABLE " + tableName + " (dbl1 double precision,dbl2 double precision) without oids;"));
+ QVERIFY_SQL(q,exec("CREATE TABLE " + tableName + "(dbl1 double precision,dbl2 double precision) without oids;"));
QString queryString("INSERT INTO " + tableName +"(dbl1, dbl2) VALUES(?,?)");