aboutsummaryrefslogtreecommitdiff
path: root/tests/test_list.cpp
diff options
context:
space:
mode:
authorMatthew Hodgson <matthew@matrix.org>2015-06-27 01:15:23 +0200
committerMatthew Hodgson <matthew@matrix.org>2015-06-27 01:15:23 +0200
commit09d4125ff164f5ca686d12ccb0790c35ce721a6b (patch)
tree7ac8192180180705327d5090c5e603f54ddde2a0 /tests/test_list.cpp
parentfe958472453b1bac99854a419ef667d8f2cd351d (diff)
Rename axolotlpp as olm to avoid confusion with Axolotl-the-spec and Axolotl-the-OWS-libraries at moxie's request
Diffstat (limited to 'tests/test_list.cpp')
-rw-r--r--tests/test_list.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_list.cpp b/tests/test_list.cpp
index 2cf23dc..c6d9a9a 100644
--- a/tests/test_list.cpp
+++ b/tests/test_list.cpp
@@ -12,7 +12,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-#include "axolotl/list.hh"
+#include "olm/list.hh"
#include "unittest.hh"
int main() {
@@ -21,7 +21,7 @@ int main() {
TestCase test_case("List insert");
-axolotl::List<int, 4> test_list;
+olm::List<int, 4> test_list;
assert_equals(std::size_t(0), test_list.size());
@@ -47,7 +47,7 @@ assert_equals(4, test_list[3]);
{ /** List erase test **/
TestCase test_case("List erase");
-axolotl::List<int, 4> test_list;
+olm::List<int, 4> test_list;
assert_equals(std::size_t(0), test_list.size());
for (int i = 0; i < 4; ++i) {