Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorChristian Kamm <kamm@incasoftware.de>2014-12-04 15:55:58 +0300
committerChristian Kamm <kamm@incasoftware.de>2014-12-04 17:35:55 +0300
commit40f44c23890dd5fca86928b0f7c0d3f4218b7fc4 (patch)
treef28f9211fd867773f66c66f5cfece9781728fc67 /test
parent441b5bd1dc3e862aec98161c8ea780bc7e846828 (diff)
DB: Delete corrupt database. #2547
* Also use readonly DB access for SocketAPI.
Diffstat (limited to 'test')
-rw-r--r--test/testownsql.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testownsql.h b/test/testownsql.h
index c3f79f4d6..b59a84ab1 100644
--- a/test/testownsql.h
+++ b/test/testownsql.h
@@ -42,7 +42,7 @@ private slots:
void testOpenDb() {
QFileInfo fi( testdbC );
QVERIFY( !fi.exists() ); // must not exist
- _db.open(testdbC);
+ _db.openOrCreateReadWrite(testdbC);
fi.refresh();
QVERIFY(fi.exists());