We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b47ea87 commit 92ca92aCopy full SHA for 92ca92a
pytestqt/__init__.py
@@ -6,13 +6,13 @@
6
interaction, like key presses and mouse clicks::
7
8
def test_hello(qtbot):
9
- widget = QtGui.QWidget()
+ widget = HelloWidget()
10
qtbot.addWidget(widget)
11
12
# click in the Greet button and make sure it updates the appropriate label
13
qtbot.mouseClick(window.button_greet, QtCore.Qt.LeftButton)
14
15
- assert window.greet_label.text() == 'Hello'
+ assert window.greet_label.text() == 'Hello!'
16
17
18
.. .. literalinclude:: ../src/pytestqt/_tests/test_basics.py
@@ -27,6 +27,6 @@ def test_hello(qtbot):
27
'''
28
29
# The short X.Y version.
30
-version = '0.3'
+version = '1.0'
31
# The full version, including alpha/beta/rc tags.
32
-release = '0.3'
+release = '1.0'
0 commit comments