[asterisk-commits] qwell: trunk r369027 - in /trunk: ./ apps/app_voicemail.c

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


Author: qwell
Date: Fri Jun 15 11:30:58 2012
New Revision: 369027

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=369027
Log:
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

Modified:
    trunk/   (props changed)
    trunk/apps/app_voicemail.c

Propchange: trunk/
------------------------------------------------------------------------------
--- branch-10-digiumphones-merged (original)
+++ branch-10-digiumphones-merged Fri Jun 15 11:30:58 2012
@@ -1,1 +1,1 @@
-/branches/10-digiumphones:364766,365396,368791,368963-368965,368999
+/branches/10-digiumphones:364766,365396,368791,368963-368965,368999,369026

Modified: trunk/apps/app_voicemail.c
URL: http://svnview.digium.com/svn/asterisk/trunk/apps/app_voicemail.c?view=diff&rev=369027&r1=369026&r2=369027
==============================================================================
--- trunk/apps/app_voicemail.c (original)
+++ trunk/apps/app_voicemail.c Fri Jun 15 11:30:58 2012
@@ -14180,7 +14180,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