Changes in src/sas/qtgui/Perspectives/Fitting/UnitTesting/ConstraintWidgetTest.py [725d9c06:3b3b40b] in sasview
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/Perspectives/Fitting/UnitTesting/ConstraintWidgetTest.py
- Property mode changed from 100755 to 100644
r725d9c06 r3b3b40b 22 22 if not QtWidgets.QApplication.instance(): 23 23 app = QtWidgets.QApplication(sys.argv) 24 #app = QtWidgets.QApplication(sys.argv)25 24 26 25 class ConstraintWidgetTest(unittest.TestCase): … … 71 70 # click on "batch" 72 71 QTest.mouseClick(self.widget.btnBatch, QtCore.Qt.LeftButton) 73 app.processEvents()72 QtWidgets.QApplication.processEvents() 74 73 # See what the current type is now 75 74 self.assertEqual(self.widget.currentType, "BatchPage") … … 78 77 # Go back to single fit 79 78 QTest.mouseClick(self.widget.btnSingle, QtCore.Qt.LeftButton) 80 app.processEvents()79 QtWidgets.QApplication.processEvents() 81 80 # See what the current type is now 82 81 self.assertEqual(self.widget.currentType, "FitPage")
Note: See TracChangeset
for help on using the changeset viewer.