[asterisk-commits] bridge test case: pass test configuration to parent test cas... (testsuite[master])
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Fri Nov 13 05:35:38 CST 2015
Anonymous Coward #1000019 has submitted this change and it was merged.
Change subject: bridge_test_case: pass test configuration to parent test case class
......................................................................
bridge_test_case: pass test configuration to parent test case class
The bridge_test_case didn't pass the test configuration data to its parent
class (TestCase), so any applicable options were not being set.
Change-Id: I36d45ab8ce5d70a3613078f64ce12cea602f8b34
---
M lib/python/asterisk/bridge_test_case.py
1 file changed, 1 insertion(+), 1 deletion(-)
Approvals:
Anonymous Coward #1000019: Verified
Matt Jordan: Looks good to me, but someone else must approve
Joshua Colp: Looks good to me, approved
diff --git a/lib/python/asterisk/bridge_test_case.py b/lib/python/asterisk/bridge_test_case.py
index e9ae244..27d34e1 100644
--- a/lib/python/asterisk/bridge_test_case.py
+++ b/lib/python/asterisk/bridge_test_case.py
@@ -45,7 +45,7 @@
1 : the unit from which calls originate, also known as "Alice"
2 : the unit where calls terminate, also known as "Bob"
"""
- TestCase.__init__(self, test_path)
+ TestCase.__init__(self, test_path, test_config)
self.test_runs = []
self.current_run = 0
self.ami_uut = None
--
To view, visit https://gerrit.asterisk.org/1619
To unsubscribe, visit https://gerrit.asterisk.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: I36d45ab8ce5d70a3613078f64ce12cea602f8b34
Gerrit-PatchSet: 1
Gerrit-Project: testsuite
Gerrit-Branch: master
Gerrit-Owner: Kevin Harwell <kharwell at digium.com>
Gerrit-Reviewer: Anonymous Coward #1000019
Gerrit-Reviewer: Joshua Colp <jcolp at digium.com>
Gerrit-Reviewer: Matt Jordan <mjordan at digium.com>
More information about the asterisk-commits
mailing list