diff options
author | Matthew Hodgson <matthew@matrix.org> | 2015-06-27 01:15:23 +0200 |
---|---|---|
committer | Matthew Hodgson <matthew@matrix.org> | 2015-06-27 01:15:23 +0200 |
commit | 09d4125ff164f5ca686d12ccb0790c35ce721a6b (patch) | |
tree | 7ac8192180180705327d5090c5e603f54ddde2a0 /tests/test_list.cpp | |
parent | fe958472453b1bac99854a419ef667d8f2cd351d (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.cpp | 6 |
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) { |