Merge lp:~tangent-org/libmemcached/1.0-build Build: jenkins-Libmemcached-1.0-52
[awesomized/libmemcached] / tests / hashkit_functions.cc
index 908ad9605cc247ddc75f302654875b6fed3cd9f9..b45be3ae86856764f62ab57dda8aa23be753f5e6 100644 (file)
@@ -40,7 +40,6 @@
 
 using namespace libtest;
 
-#include <cassert>
 #include <cstdio>
 #include <cstdlib>
 #include <cstring>
@@ -563,9 +562,9 @@ static bool world_destroy(void *object)
   return TEST_SUCCESS;
 }
 
-void get_world(Framework *world)
+void get_world(libtest::Framework* world)
 {
-  world->collections= collection;
-  world->_create= world_create;
-  world->_destroy= world_destroy;
+  world->collections(collection);
+  world->create(world_create);
+  world->destroy(world_destroy);
 }