From: Jason Parker Date: Fri, 15 Jun 2012 16:30:27 +0000 (+0000) Subject: Fix voicemail API tests by using the correct argument order for create/destroy. X-Git-Tag: 10.7.0-digiumphones-rc1~34 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=96a5878bd6547c4e2a7610a228797f00ef53af95;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 git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/10-digiumphones@369026 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index 029ce9eca6..4c478d3bec 100644 --- a/apps/app_voicemail.c +++ b/apps/app_voicemail.c @@ -13650,7 +13650,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);