aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativesqldatabase/data/error-b.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qdeclarativesqldatabase/data/error-b.js')
-rw-r--r--tests/auto/declarative/qdeclarativesqldatabase/data/error-b.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/auto/declarative/qdeclarativesqldatabase/data/error-b.js b/tests/auto/declarative/qdeclarativesqldatabase/data/error-b.js
deleted file mode 100644
index 17e34c989e..0000000000
--- a/tests/auto/declarative/qdeclarativesqldatabase/data/error-b.js
+++ /dev/null
@@ -1,15 +0,0 @@
-.import QtQuick.LocalStorage 2.0 as Sql
-
-function test() {
- var db = Sql.openDatabaseSync("QmlTestDB-error-b", "1.0", "Test database from Qt autotests", 1000000);
- var r="transaction_not_finished";
-
- db.transaction(
- function(tx) {
- tx.executeSql('INSERT INTO Greeting VALUES("junk","junk")');
- notexist[123] = "oops"
- }
- );
-
- return r;
-}