diff options
| author | Friedemann Kleint <Friedemann.Kleint@qt.io> | 2020-02-19 09:51:25 +0100 |
|---|---|---|
| committer | Friedemann Kleint <Friedemann.Kleint@qt.io> | 2020-02-20 22:16:57 +0100 |
| commit | f69d163d17d3717c28f2c065173113756d7c50ef (patch) | |
| tree | f8203180c87c919b228fed4f70d2a3a23b81246d /sources/pyside2/tests/QtWebKit/webpage_test.py | |
| parent | bc4d618d5f4c82c9a826a195043739c7e63ed138 (diff) | |
Pyside2/tests: Split the helper module
The classes of the helper module were defined in the __init__.py
file with complicated logic to test for presence of the modules.
Split the classes apart and empty the __init__.py file (still
required for Python2).
Change-Id: I4f4971f9a48e2961233da5585aa0df53bfbb9c7a
Reviewed-by: Christian Tismer <tismer@stackless.com>
Diffstat (limited to 'sources/pyside2/tests/QtWebKit/webpage_test.py')
| -rw-r--r-- | sources/pyside2/tests/QtWebKit/webpage_test.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sources/pyside2/tests/QtWebKit/webpage_test.py b/sources/pyside2/tests/QtWebKit/webpage_test.py index 3ed6fa89d..22ad1ff9f 100644 --- a/sources/pyside2/tests/QtWebKit/webpage_test.py +++ b/sources/pyside2/tests/QtWebKit/webpage_test.py @@ -38,7 +38,8 @@ from PySide2.QtCore import QObject, SIGNAL, QUrl from PySide2.QtWebKit import QWebPage from PySide2.QtNetwork import QNetworkAccessManager -from helper import adjust_filename, TimedQApplication +from helper.helper import adjust_filename +from helper.timedqapplication import TimedQApplication #Define a global timeout because TimedQApplication uses a singleton! #Use a value big enough to run all the tests. |
