[asterisk-commits] qwell: branch certified-1.8.11 r369024 - /certified/branches/1.8.11/apps/

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Fri Jun 15 11:29:44 CDT 2012


Author: qwell
Date: Fri Jun 15 11:29:40 2012
New Revision: 369024

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=369024
Log:
Fix voicemail API tests by using the correct argument order for create/destroy.

Modified:
    certified/branches/1.8.11/apps/app_voicemail.c

Modified: certified/branches/1.8.11/apps/app_voicemail.c
URL: http://svnview.digium.com/svn/asterisk/certified/branches/1.8.11/apps/app_voicemail.c?view=diff&rev=369024&r1=369023&r2=369024
==============================================================================
--- certified/branches/1.8.11/apps/app_voicemail.c (original)
+++ certified/branches/1.8.11/apps/app_voicemail.c Fri Jun 15 11:29:40 2012
@@ -13621,7 +13621,7 @@
 				 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);




More information about the asterisk-commits mailing list