diff options
Diffstat (limited to 'test/pkarr.cpp')
| -rw-r--r-- | test/pkarr.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/pkarr.cpp b/test/pkarr.cpp index 600b38f..4b03922 100644 --- a/test/pkarr.cpp +++ b/test/pkarr.cpp @@ -14,13 +14,13 @@ void test_spinup(struct pk_membucket **bkt) { - *bkt = pk_bucket_create("test", 1024 * 1024, PK_MEMBUCKET_FLAG_NONE); + *bkt = pk_mem_bucket_create("test", 1024 * 1024, PK_MEMBUCKET_FLAG_NONE); } void test_teardown(struct pk_membucket **bkt) { - pk_bucket_destroy(*bkt); + pk_mem_bucket_destroy(*bkt); *bkt = NULL; } |
