Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/qtgui/Perspectives/Fitting/UnitTesting/ConstraintWidgetTest.py

    • Property mode changed from 100644 to 100755
    r3b3b40b r725d9c06  
    2222if not QtWidgets.QApplication.instance(): 
    2323    app = QtWidgets.QApplication(sys.argv) 
     24#app = QtWidgets.QApplication(sys.argv) 
    2425 
    2526class ConstraintWidgetTest(unittest.TestCase): 
     
    7071        # click on "batch" 
    7172        QTest.mouseClick(self.widget.btnBatch, QtCore.Qt.LeftButton) 
    72         QtWidgets.QApplication.processEvents() 
     73        app.processEvents() 
    7374        # See what the current type is now 
    7475        self.assertEqual(self.widget.currentType, "BatchPage") 
     
    7778        # Go back to single fit 
    7879        QTest.mouseClick(self.widget.btnSingle, QtCore.Qt.LeftButton) 
    79         QtWidgets.QApplication.processEvents() 
     80        app.processEvents() 
    8081        # See what the current type is now 
    8182        self.assertEqual(self.widget.currentType, "FitPage") 
Note: See TracChangeset for help on using the changeset viewer.