[asterisk-commits] mjordan: testsuite/asterisk/trunk r3484 - /asterisk/trunk/tests/channels/SIP/...
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Sat Oct 6 08:22:45 CDT 2012
Author: mjordan
Date: Sat Oct 6 08:22:40 2012
New Revision: 3484
URL: http://svnview.digium.com/svn/testsuite?view=rev&rev=3484
Log:
Fix incorrect reference to current_destinations in Originator class
The correct reference is 'current_destination'.
Modified:
asterisk/trunk/tests/channels/SIP/sip_outbound_address/originator.py
Modified: asterisk/trunk/tests/channels/SIP/sip_outbound_address/originator.py
URL: http://svnview.digium.com/svn/testsuite/asterisk/trunk/tests/channels/SIP/sip_outbound_address/originator.py?view=diff&rev=3484&r1=3483&r2=3484
==============================================================================
--- asterisk/trunk/tests/channels/SIP/sip_outbound_address/originator.py (original)
+++ asterisk/trunk/tests/channels/SIP/sip_outbound_address/originator.py Sat Oct 6 08:22:40 2012
@@ -43,7 +43,7 @@
self.test_object.set_passed(False)
return result
- dest = DESTINATIONS[self.current_destinations]
+ dest = DESTINATIONS[self.current_destination]
LOGGER.info("Originating call to %s" % dest)
More information about the asterisk-commits
mailing list