[asterisk-commits] kmoore: testsuite/asterisk/trunk r3119 - /asterisk/trunk/tests/channels/SIP/g...

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Wed Mar 21 13:06:56 CDT 2012


Author: kmoore
Date: Wed Mar 21 13:06:52 2012
New Revision: 3119

URL: http://svnview.digium.com/svn/testsuite?view=rev&rev=3119
Log:
The trailing \ to continue the if statement was somehow left out of r3118

Modified:
    asterisk/trunk/tests/channels/SIP/generic_ccss/run-test

Modified: asterisk/trunk/tests/channels/SIP/generic_ccss/run-test
URL: http://svnview.digium.com/svn/testsuite/asterisk/trunk/tests/channels/SIP/generic_ccss/run-test?view=diff&rev=3119&r1=3118&r2=3119
==============================================================================
--- asterisk/trunk/tests/channels/SIP/generic_ccss/run-test (original)
+++ asterisk/trunk/tests/channels/SIP/generic_ccss/run-test Wed Mar 21 13:06:52 2012
@@ -80,7 +80,7 @@
     def status_callback(self, result):
         # hangup all channels listed on the second instance
         for status_result in result:
-            if 'context' in status_result and
+            if 'context' in status_result and\
                 status_result['context'] == 'bob-incoming':
                 self.ami[0].hangup(status_result['channel'])
 




More information about the asterisk-commits mailing list