X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=tests%2Fhashkit_functions.cc;h=1e9ec7bd009784fdbeb44a4815cac1c446725092;hb=0ce6b69e0f8e25e50bd878678b1444651093bac4;hp=6a823cdd3022c9f5bcf7cdbd37d5fbc6055c8fc0;hpb=fee8381b6b80398fcb6893860400ead6a598f15b;p=m6w6%2Flibmemcached diff --git a/tests/hashkit_functions.cc b/tests/hashkit_functions.cc index 6a823cdd..1e9ec7bd 100644 --- a/tests/hashkit_functions.cc +++ b/tests/hashkit_functions.cc @@ -35,17 +35,16 @@ * */ -#include +#include #include using namespace libtest; -#include #include #include #include -#include +#include #include #include "tests/hash_results.h" @@ -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); }