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 --- tests/test_gsxws.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'tests/test_gsxws.py') diff --git a/tests/test_gsxws.py b/tests/test_gsxws.py index 22372ab..2239419 100644 --- a/tests/test_gsxws.py +++ b/tests/test_gsxws.py @@ -52,6 +52,8 @@ class DiagnosticsTestCase(TestCase): device = Product(sn=self.sn) self.diag = diagnostics.Diagnostics(serialNumber=self.sn) self.diag.shipTo = os.getenv('GSX_SHIPTO') + suites = self.diag.fetch_suites() + self.suite = suites[0] def test_fetch(self): res = self.diag.fetch() @@ -68,8 +70,11 @@ class DiagnosticsTestCase(TestCase): self.assertUnicodeOrInt(r.value) def test_fetch_suites(self): - suites = self.diag.fetch_suites() - self.assertIsInstance(suites[0][0], int) + self.assertIsInstance(self.suite[0], int) + + def test_run_test(self): + self.diag.diagnosticSuiteId = self.suite[0] + self.diag.run_test() def test_fetch_dc_url(self): url = self.diag.fetch_dc_url() -- cgit v1.2.3