From: Jason Parker Date: Fri, 15 Jun 2012 16:29:40 +0000 (+0000) Subject: Fix voicemail API tests by using the correct argument order for create/destroy. X-Git-Tag: certified/1.8.11-cert5-rc1~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=daf9607e23c5372f7794d3062b200bb456459394;p=thirdparty%2Fasterisk.git Fix voicemail API tests by using the correct argument order for create/destroy. git-svn-id: https://origsvn.digium.com/svn/asterisk/certified/branches/1.8.11@369024 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index edb3dc143e..15a1cf9356 100644 --- a/apps/app_voicemail.c +++ b/apps/app_voicemail.c @@ -13621,7 +13621,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);