From: Jason Parker Date: Fri, 15 Jun 2012 16:30:58 +0000 (+0000) Subject: Fix voicemail API tests by using the correct argument order for create/destroy. X-Git-Tag: 11.0.0-beta1~217 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=88c9c6bef8928c5d857172f1b8206c08699d0f75;p=thirdparty%2Fasterisk.git Fix voicemail API tests by using the correct argument order for create/destroy. ........ Merged revisions 369024 from http://svn.asterisk.org/svn/asterisk/certified/branches/1.8.11 ........ Merged revisions 369026 from http://svn.asterisk.org/svn/asterisk/branches/10-digiumphones git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@369027 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index 55072cf82c..1a9f73810b 100644 --- a/apps/app_voicemail.c +++ b/apps/app_voicemail.c @@ -14180,7 +14180,7 @@ static int load_module(void) vm_msg_move, vm_msg_remove, vm_msg_forward, vm_msg_play); #ifdef TEST_FRAMEWORK - ast_install_vm_test_functions(vm_test_destroy_user, vm_test_create_user); + ast_install_vm_test_functions(vm_test_create_user, vm_test_destroy_user); #endif ast_realtime_require_field("voicemail", "uniqueid", RQ_UINTEGER3, 11, "password", RQ_CHAR, 10, SENTINEL);