From 3420f74425c8e8247bef4a916bc053f1ed95df07 Mon Sep 17 00:00:00 2001 From: Filipp Lepalaan Date: Fri, 9 Oct 2015 11:00:24 +0300 Subject: Fix diags.run_test --- gsxws/core.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'gsxws/core.py') diff --git a/gsxws/core.py b/gsxws/core.py index 4c3c4a4..083efed 100644 --- a/gsxws/core.py +++ b/gsxws/core.py @@ -324,6 +324,10 @@ class GsxRequest(object): # @hack FetchDiagnosticSuites doesn't follow the naming conventions if method.endswith('FetchDiagnosticSuites'): request_name = 'FetchDiagnosticSuitesRequestData' + + # @hack RunDiagnosticTest doesn't follow the naming conventions + if method.endswith('RunDiagnosticTest'): + request_name = 'RunDiagnosticTestRequestData' request = ET.SubElement(root, request_name) request.append(GSX_SESSION) -- cgit v1.2.3