From: Tony Mack Date: Wed, 26 Mar 2008 00:35:08 +0000 (+0000) Subject: simplify X-Git-Tag: tests-4.2-4~156 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=9bea2382fb1e2755ce23bff49a4dbd1b4624f35f;p=tests.git simplify --- diff --git a/qaapi/qa/tests/delete_test_data.py b/qaapi/qa/tests/delete_test_data.py index d831f0a..107b23a 100644 --- a/qaapi/qa/tests/delete_test_data.py +++ b/qaapi/qa/tests/delete_test_data.py @@ -13,13 +13,7 @@ class delete_test_data(Test): def call(self, plc_name = None): # Determine which plc to talk to - plc = PLC(self.config) - plcs = getattr(self.config, 'plcs', []) - for p in plcs: - if p['name'] in [plc_name]: - plc.update(p) - plc.config.update_api(plc) - + plc = self.config.get_plc(plc_name) api = plc.config.api auth = plc.config.auth