diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-06-26 01:41:17 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-06-26 03:28:08 +0200 |
commit | 97ad8133644d8eb7678aa3c180f3d8f9247a0d90 (patch) | |
tree | a8f4eefeba05a63c4c76b266686d2a4c8c4f6a5d /uitest/calc_tests | |
parent | c924baf95fe47ea642924b3bc47cd81bf4e89d10 (diff) |
uitest: bring some order into the file mess
The uitest/uitest directory will be used for the actual uitest
framework.
The libreoffice directory should contain any common LibreOffice related
code.
Change-Id: I3f6394ff4be83b89a8764eab10a154e755237d35
Diffstat (limited to 'uitest/calc_tests')
-rw-r--r-- | uitest/calc_tests/about_test.py | 2 | ||||
-rw-r--r-- | uitest/calc_tests/create_chart.py | 2 | ||||
-rw-r--r-- | uitest/calc_tests/create_range_name.py | 2 | ||||
-rw-r--r-- | uitest/calc_tests/function_wizard.py | 2 | ||||
-rw-r--r-- | uitest/calc_tests/gridwin.py | 2 | ||||
-rw-r--r-- | uitest/calc_tests/gridwindow.py | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/uitest/calc_tests/about_test.py b/uitest/calc_tests/about_test.py index df90e7da79bc..1495837c1649 100644 --- a/uitest/calc_tests/about_test.py +++ b/uitest/calc_tests/about_test.py @@ -7,7 +7,7 @@ from uitest_helper import UITest -from UITestCase import UITestCase +from uitest.framework import UITestCase class AboutDlgTest(UITestCase): diff --git a/uitest/calc_tests/create_chart.py b/uitest/calc_tests/create_chart.py index 1bd82767bfe2..322618b82d46 100644 --- a/uitest/calc_tests/create_chart.py +++ b/uitest/calc_tests/create_chart.py @@ -9,7 +9,7 @@ from uitest_helper import UITest from helper import mkPropertyValues -from UITestCase import UITestCase +from uitest.framework import UITestCase import time diff --git a/uitest/calc_tests/create_range_name.py b/uitest/calc_tests/create_range_name.py index 01d01fd6690b..a265970bdb06 100644 --- a/uitest/calc_tests/create_range_name.py +++ b/uitest/calc_tests/create_range_name.py @@ -9,7 +9,7 @@ from uitest_helper import UITest from helper import mkPropertyValues -from UITestCase import UITestCase +from uitest.framework import UITestCase try: import pyuno diff --git a/uitest/calc_tests/function_wizard.py b/uitest/calc_tests/function_wizard.py index bbdb0c15966b..b7ab11d25bc8 100644 --- a/uitest/calc_tests/function_wizard.py +++ b/uitest/calc_tests/function_wizard.py @@ -10,7 +10,7 @@ from uitest_helper import UITest from helper import mkPropertyValues import time -from UITestCase import UITestCase +from uitest.framework import UITestCase try: import pyuno diff --git a/uitest/calc_tests/gridwin.py b/uitest/calc_tests/gridwin.py index 7077f4bebf23..3366dc0c5bdd 100644 --- a/uitest/calc_tests/gridwin.py +++ b/uitest/calc_tests/gridwin.py @@ -9,7 +9,7 @@ from uitest_helper import UITest from helper import mkPropertyValues -from UITestCase import UITestCase +from uitest.framework import UITestCase import time diff --git a/uitest/calc_tests/gridwindow.py b/uitest/calc_tests/gridwindow.py index c3b2d1d4179c..4dfa83a46cff 100644 --- a/uitest/calc_tests/gridwindow.py +++ b/uitest/calc_tests/gridwindow.py @@ -11,7 +11,7 @@ from helper import mkPropertyValues from uihelper.calc import enter_text_to_cell -from UITestCase import UITestCase +from uitest.framework import UITestCase import time |