aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manually/bug_841.py
diff options
context:
space:
mode:
authorRenato Filho <renato.filho@openbossa.org>2011-05-03 16:18:50 -0300
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-08 16:54:18 -0300
commit4b5a6f760f3f2f9e4bc97cba8c080bb58c204353 (patch)
treebdacfe5583c4afb2569b81703d4aecd489e88ca9 /tests/manually/bug_841.py
parent1d3063a8231ea2e44a946ac8dcb76faff8cb8e9e (diff)
Fixed some typos on unit test for bug #841
Diffstat (limited to 'tests/manually/bug_841.py')
-rw-r--r--tests/manually/bug_841.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/manually/bug_841.py b/tests/manually/bug_841.py
index 007cd6af1..08de09e90 100644
--- a/tests/manually/bug_841.py
+++ b/tests/manually/bug_841.py
@@ -1,8 +1,6 @@
import sys
-from PySide.QtCore import *
-from PySide.QtGui import *
-from PySide.QtTest import *
+from PySide.QtGui import QStandardItem, QStandardItemModel, QMainWindow, QTreeView, QAbstractItemView, QApplication, QMessageBox
class Item(QStandardItem):
def __init__(self, text):
@@ -43,7 +41,7 @@ def main():
app = QApplication(sys.argv)
w = MainWindow()
w.show()
- QMessageBox.information(None, "Info", "Just drag and drop the itens.")
+ QMessageBox.information(None, "Info", "Just drag and drop the items.")
sys.exit(app.exec_())
if __name__ == "__main__":