Commit a6abde71 authored by Lenard Nagy's avatar Lenard Nagy Committed by Gerrit Code Review @ Eclipse.org
Browse files

Merge "[internal #1848537] Upgrade scripts to use Python3"

parents 6cbb1ad9 859615ef
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -35,9 +35,9 @@ class BaseTestCase(unittest.TestCase):
        x = 0
        while (x < jsErrorsLength):
            if (x == 0): 
                print '\n*** Test id :', self.id()
                print('\n*** Test id :', self.id())
            javaScript = "return window.jsErrors[" + str(x) + "] " 
            print self.driver.execute_script(javaScript) + '\n'
            print(self.driver.execute_script(javaScript) + '\n')
            x += 1

        self.driver.quit()