storage: Making use of SkipList-based index
Change-Id: I360af97ae794da383fe00aaad8ab3c417c5167d3
Refs: #1695, #1434
diff --git a/tests/sqlite-fixture.hpp b/tests/sqlite-fixture.hpp
index 82d9fe1..a2eba12 100644
--- a/tests/sqlite-fixture.hpp
+++ b/tests/sqlite-fixture.hpp
@@ -20,7 +20,7 @@
#ifndef REPO_TESTS_SQLITE_FIXTURE_HPP
#define REPO_TESTS_SQLITE_FIXTURE_HPP
-#include "storage/sqlite-handle.hpp"
+#include "storage/sqlite-storage.hpp"
#include <boost/filesystem.hpp>
#include <boost/test/unit_test.hpp>
@@ -32,7 +32,7 @@
{
public:
SqliteFixture()
- : handle(new SqliteHandle("unittestdb"))
+ : handle(new SqliteStorage("unittestdb"))
{
}
@@ -43,7 +43,7 @@
}
public:
- SqliteHandle* handle;
+ SqliteStorage* handle;
};
} // namespace tests