diff options
author | Aaron Seigo <aseigo@kde.org> | 2014-12-15 19:28:05 +0100 |
---|---|---|
committer | Aaron Seigo <aseigo@kde.org> | 2014-12-15 19:28:05 +0100 |
commit | 3dd90236e7927028ff5c98635f8075189c9869c2 (patch) | |
tree | aefb7ce4e698b6c9d6993546d5e437a61d7ce4e3 /tests/dummyresourcefacadetest.cpp | |
parent | cb0f5fb769380db5771ff8e0dba8d780cdc92edb (diff) | |
download | sink-3dd90236e7927028ff5c98635f8075189c9869c2.tar.gz sink-3dd90236e7927028ff5c98635f8075189c9869c2.zip |
namespace everything in libs with Akonadi2
Diffstat (limited to 'tests/dummyresourcefacadetest.cpp')
-rw-r--r-- | tests/dummyresourcefacadetest.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/dummyresourcefacadetest.cpp b/tests/dummyresourcefacadetest.cpp index 26daa23..d815e9b 100644 --- a/tests/dummyresourcefacadetest.cpp +++ b/tests/dummyresourcefacadetest.cpp | |||
@@ -19,7 +19,7 @@ private: | |||
19 | 19 | ||
20 | void populate(int count) | 20 | void populate(int count) |
21 | { | 21 | { |
22 | Storage storage(testDataPath, dbName, Storage::ReadWrite); | 22 | Akonadi2::Storage storage(testDataPath, dbName, Akonadi2::Storage::ReadWrite); |
23 | for (int i = 0; i < count; i++) { | 23 | for (int i = 0; i < count; i++) { |
24 | storage.write(keyPrefix + std::to_string(i), keyPrefix + std::to_string(i)); | 24 | storage.write(keyPrefix + std::to_string(i), keyPrefix + std::to_string(i)); |
25 | } | 25 | } |
@@ -38,7 +38,7 @@ private Q_SLOTS: | |||
38 | 38 | ||
39 | void cleanupTestCase() | 39 | void cleanupTestCase() |
40 | { | 40 | { |
41 | Storage storage(testDataPath, dbName); | 41 | Akonadi2::Storage storage(testDataPath, dbName); |
42 | storage.removeFromDisk(); | 42 | storage.removeFromDisk(); |
43 | } | 43 | } |
44 | 44 | ||
@@ -63,7 +63,7 @@ private Q_SLOTS: | |||
63 | QTRY_VERIFY(complete); | 63 | QTRY_VERIFY(complete); |
64 | QCOMPARE(results.size(), 1); | 64 | QCOMPARE(results.size(), 1); |
65 | 65 | ||
66 | Storage storage(testDataPath, dbName); | 66 | Akonadi2::Storage storage(testDataPath, dbName); |
67 | storage.removeFromDisk(); | 67 | storage.removeFromDisk(); |
68 | } | 68 | } |
69 | 69 | ||