Update docs directives.
[awesomized/libmemcached] / tests / hashkit_functions.cc
index e13a854b794435c881d92d7ee26876ad983403cb..b45be3ae86856764f62ab57dda8aa23be753f5e6 100644 (file)
@@ -562,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);
 }