Ignore:
Timestamp:
Aug 22, 2017 5:59:29 AM (7 years ago)
Author:
Piotr Rozyczko <rozyczko@…>
Branches:
ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
Children:
b2a5042
Parents:
457d961
Message:

Use singleton QApplication in unit tests to avoid issues on Ubuntu. SASVIEW-485

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/qtgui/Calculators/UnitTesting/SlitSizeCalculatorTest.py

    r83eb5208 r464cd07  
    1212from sas.sascalc.dataloader.loader import Loader 
    1313 
    14 app = QtGui.QApplication(sys.argv) 
     14if not QtGui.QApplication.instance(): 
     15    app = QtGui.QApplication(sys.argv) 
    1516 
    1617 
     
    8788                                self.widget.calculateSlitSize, data) 
    8889 
    89         filename = "empty_file.txt" 
    90         loader = Loader() 
    91         data = loader.load(filename) 
    92         self.assertRaisesRegexp(RuntimeError, 
    93                                 "ERROR: Data hasn't been loaded correctly", 
    94                                 self.widget.calculateSlitSize, data) 
    95  
    9690        data = None 
    9791        self.assertRaisesRegexp(RuntimeError, 
Note: See TracChangeset for help on using the changeset viewer.