From 96a5878bd6547c4e2a7610a228797f00ef53af95 Mon Sep 17 00:00:00 2001 From: Jason Parker Date: Fri, 15 Jun 2012 16:30:27 +0000 Subject: [PATCH] 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 --- apps/app_voicemail.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.47.2